diff options
author | YAMANE Toshiaki <yamanetoshi@gmail.com> | 2012-11-22 04:05:53 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-27 04:01:29 +0400 |
commit | 49bd136f93fe503c968ca95247dff9869324f484 (patch) | |
tree | 3013df1719e2bbe4f06afff2abbe45ea48ecc5c7 /drivers/staging/rtl8187se | |
parent | e3f27c7dade809c9d2ddde36a7401ad59671c504 (diff) | |
download | linux-49bd136f93fe503c968ca95247dff9869324f484.tar.xz |
staging/rtl8187se: Remove the unnecessary initialization of a local variable in r8180_core.c
The following errors fixed.
- ERROR: do not initialise statics to 0 or NULL
Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8187se')
-rw-r--r-- | drivers/staging/rtl8187se/r8180_core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.c index c46b59a8197e..7d8f9910c875 100644 --- a/drivers/staging/rtl8187se/r8180_core.c +++ b/drivers/staging/rtl8187se/r8180_core.c @@ -62,7 +62,7 @@ static struct pci_device_id rtl8180_pci_id_tbl[] = { }; static char ifname[IFNAMSIZ] = "wlan%d"; -static int hwwep = 0; +static int hwwep; MODULE_LICENSE("GPL"); MODULE_DEVICE_TABLE(pci, rtl8180_pci_id_tbl); @@ -201,7 +201,7 @@ static struct net_device_stats *rtl8180_stats(struct net_device *dev); void rtl8180_commit(struct net_device *dev); void rtl8180_start_tx_beacon(struct net_device *dev); -static struct proc_dir_entry *rtl8180_proc = NULL; +static struct proc_dir_entry *rtl8180_proc; static int proc_get_registers(char *page, char **start, off_t offset, int count, @@ -3726,7 +3726,7 @@ void GPIOChangeRFWorkItemCallBack(struct work_struct *work) char *argv[3]; static char *RadioPowerPath = "/etc/acpi/events/RadioPower.sh"; static char *envp[] = {"HOME=/", "TERM=linux", "PATH=/usr/bin:/bin", NULL}; - static int readf_count = 0; + static int readf_count; readf_count = (readf_count+1)%0xffff; /* We should turn off LED before polling FF51[4]. */ |