diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2017-10-05 09:51:13 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2017-10-05 09:51:21 +0900 |
commit | 100a48605803ac60cf8fae7b8a0d7189ed6a3e32 (patch) | |
tree | 071300bce59c5d696e5e1e098e20ffd7bd9d1817 | |
parent | bb0e0f603a7cd8f26ffecb2ddb3ef620037d8a7a (diff) | |
download | linux-3.10-artik-100a48605803ac60cf8fae7b8a0d7189ed6a3e32.tar.gz linux-3.10-artik-100a48605803ac60cf8fae7b8a0d7189ed6a3e32.tar.bz2 linux-3.10-artik-100a48605803ac60cf8fae7b8a0d7189ed6a3e32.zip |
net: bcmdhd: fix section mismatch
There is a section mismatch because probe function calls __exit
function. Fix the sction mismatch with removing the section macro
__exit.
Change-Id: Ia6c6724b540e353f598bfaf9574c8dceedf2144b
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
-rw-r--r-- | drivers/net/wireless/bcmdhd/dhd_custom_exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/bcmdhd/dhd_custom_exynos.c b/drivers/net/wireless/bcmdhd/dhd_custom_exynos.c index 4c1af94f367..0f25a2e6253 100644 --- a/drivers/net/wireless/bcmdhd/dhd_custom_exynos.c +++ b/drivers/net/wireless/bcmdhd/dhd_custom_exynos.c @@ -355,7 +355,7 @@ int __init dhd_wlan_init(void) return ret; } -void __exit dhd_wlan_exit(void) +void dhd_wlan_exit(void) { #ifdef CONFIG_BROADCOM_WIFI_RESERVED_MEM int i; |