* [PATCH 04/21] NFC: remove inline marking of EXPORT_SYMBOL functions
[not found] <1368086241-9357-1-git-send-email-yefremov.denis@gmail.com>
@ 2013-05-09 7:58 ` Denis Efremov
2013-05-09 9:19 ` [PATCH 08/21] iwlegacy: " Denis Efremov
1 sibling, 0 replies; 2+ messages in thread
From: Denis Efremov @ 2013-05-09 7:58 UTC (permalink / raw)
To: Lauro Ramos Venancio
Cc: Denis Efremov, Aloisio Almeida Jr, Samuel Ortiz, linux-wireless,
linux-kernel, trivial, ldv-project
EXPORT_SYMBOL and inline directives are contradictory to each other.
The patch fixes this inconsistency.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Denis Efremov <yefremov.denis@gmail.com>
---
net/nfc/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/nfc/core.c b/net/nfc/core.c
index 40d2527..1c4b513 100644
--- a/net/nfc/core.c
+++ b/net/nfc/core.c
@@ -701,7 +701,7 @@ int nfc_target_lost(struct nfc_dev *dev, u32 target_idx)
}
EXPORT_SYMBOL(nfc_target_lost);
-inline void nfc_driver_failure(struct nfc_dev *dev, int err)
+void nfc_driver_failure(struct nfc_dev *dev, int err)
{
nfc_targets_found(dev, NULL, 0);
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* [PATCH 08/21] iwlegacy: remove inline marking of EXPORT_SYMBOL functions
[not found] <1368086241-9357-1-git-send-email-yefremov.denis@gmail.com>
2013-05-09 7:58 ` [PATCH 04/21] NFC: remove inline marking of EXPORT_SYMBOL functions Denis Efremov
@ 2013-05-09 9:19 ` Denis Efremov
1 sibling, 0 replies; 2+ messages in thread
From: Denis Efremov @ 2013-05-09 9:19 UTC (permalink / raw)
To: Stanislaw Gruszka
Cc: Denis Efremov, John W. Linville, linux-wireless, netdev,
linux-kernel, trivial, ldv-project
EXPORT_SYMBOL and inline directives are contradictory to each other.
The patch fixes this inconsistency.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Denis Efremov <yefremov.denis@gmail.com>
---
drivers/net/wireless/iwlegacy/common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wireless/iwlegacy/common.c b/drivers/net/wireless/iwlegacy/common.c
index 592d0aa..e9a3cbc 100644
--- a/drivers/net/wireless/iwlegacy/common.c
+++ b/drivers/net/wireless/iwlegacy/common.c
@@ -1423,7 +1423,7 @@ il_setup_rx_scan_handlers(struct il_priv *il)
}
EXPORT_SYMBOL(il_setup_rx_scan_handlers);
-inline u16
+u16
il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
u8 n_probes)
{
--
1.8.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread