diff options
author | Chaehyun Lim <chaehyun.lim@gmail.com> | 2015-06-19 09:06:28 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-18 20:20:58 -0700 |
commit | 60cb1e20c4732c2704d7a5a2b9fd291b6b548671 (patch) | |
tree | 5e1bc50970fb26b16f58bbd3b0c9c2716aa983a8 /drivers/staging | |
parent | 9eac3a158957f98da59af51542753365986c898f (diff) | |
download | linux-stable-60cb1e20c4732c2704d7a5a2b9fd291b6b548671.tar.gz linux-stable-60cb1e20c4732c2704d7a5a2b9fd291b6b548671.tar.bz2 linux-stable-60cb1e20c4732c2704d7a5a2b9fd291b6b548671.zip |
staging: wilc1000: fix checkpatch warning
Fix warning founded by checkpatch.pl.
WARNING: __func__ should be used instead of gcc specific __FUNCTION__
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/wilc1000/linux_wlan.c | 2 | ||||
-rw-r--r-- | drivers/staging/wilc1000/linux_wlan_common.h | 16 | ||||
-rw-r--r-- | drivers/staging/wilc1000/wilc_platform.h | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index c46f088656d2..b352c504a77d 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -2403,7 +2403,7 @@ int mac_ioctl(struct net_device *ndev, struct ifreq *req, int cmd) snprintf(buff, size, "rssi %d", rssi); if (copy_to_user(wrq->u.data.pointer, buff, size)) { - PRINT_ER("%s: failed to copy data to user buffer\n", __FUNCTION__); + PRINT_ER("%s: failed to copy data to user buffer\n", __func__); s32Error = -EFAULT; goto done; } diff --git a/drivers/staging/wilc1000/linux_wlan_common.h b/drivers/staging/wilc1000/linux_wlan_common.h index 830d96a1f84e..2476bfda1b46 100644 --- a/drivers/staging/wilc1000/linux_wlan_common.h +++ b/drivers/staging/wilc1000/linux_wlan_common.h @@ -54,7 +54,7 @@ extern atomic_t DEBUG_LEVEL; do { \ if ((atomic_read(&DEBUG_LEVEL) & DEBUG) && \ ((atomic_read(®ION)) & (region))) { \ - printk("DBG [%s: %d]", __FUNCTION__, __LINE__); \ + printk("DBG [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -63,7 +63,7 @@ extern atomic_t DEBUG_LEVEL; do { \ if ((atomic_read(&DEBUG_LEVEL) & INFO) && \ ((atomic_read(®ION)) & (region))) { \ - printk("INFO [%s]", __FUNCTION__); \ + printk("INFO [%s]", __func__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -72,7 +72,7 @@ extern atomic_t DEBUG_LEVEL; do { \ if ((atomic_read(&DEBUG_LEVEL) & WRN) && \ ((atomic_read(®ION)) & (region))) { \ - printk("WRN [%s: %d]", __FUNCTION__, __LINE__); \ + printk("WRN [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -80,7 +80,7 @@ extern atomic_t DEBUG_LEVEL; #define PRINT_ER(...) \ do { \ if ((atomic_read(&DEBUG_LEVEL) & ERR)) { \ - printk("ERR [%s: %d]", __FUNCTION__, __LINE__); \ + printk("ERR [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -96,7 +96,7 @@ extern atomic_t DEBUG_LEVEL; #define PRINT_D(region, ...) \ do { \ if (DEBUG == 1 && ((REGION)&(region))) { \ - printk("DBG [%s: %d]", __FUNCTION__, __LINE__); \ + printk("DBG [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -104,7 +104,7 @@ extern atomic_t DEBUG_LEVEL; #define PRINT_INFO(region, ...) \ do { \ if (INFO == 1 && ((REGION)&(region))) { \ - printk("INFO [%s]", __FUNCTION__); \ + printk("INFO [%s]", __func__); \ printk(__VA_ARGS__); \ } \ } while (0) @@ -112,14 +112,14 @@ extern atomic_t DEBUG_LEVEL; #define PRINT_WRN(region, ...) \ do { \ if (WRN == 1 && ((REGION)&(region))) { \ - printk("WRN [%s: %d]", __FUNCTION__, __LINE__); \ + printk("WRN [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } \ } while (0) #define PRINT_ER(...) \ do { \ - printk("ERR [%s: %d]", __FUNCTION__, __LINE__); \ + printk("ERR [%s: %d]", __func__, __LINE__); \ printk(__VA_ARGS__); \ } while (0) #endif diff --git a/drivers/staging/wilc1000/wilc_platform.h b/drivers/staging/wilc1000/wilc_platform.h index 7ddea8336af6..d03532cc3af2 100644 --- a/drivers/staging/wilc1000/wilc_platform.h +++ b/drivers/staging/wilc1000/wilc_platform.h @@ -47,6 +47,6 @@ typedef time_t WILC_Time; /* Generic printf function */ #define __WILC_FILE__ __FILE__ -#define __WILC_FUNCTION__ __FUNCTION__ +#define __WILC_FUNCTION__ __func__ #define __WILC_LINE__ __LINE__ #endif |