diff options
author | Tony Cho <tony.cho@atmel.com> | 2015-09-10 18:26:27 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-12 18:24:55 -0700 |
commit | 435ebabb305bdc09376297520095ec346a49de62 (patch) | |
tree | 84e356034ee89838873337eea2553780ff5a17e3 /drivers/staging/wilc1000 | |
parent | 73d4ee746d6159dd76cf89e7d0d44a90a3545edd (diff) | |
download | linux-435ebabb305bdc09376297520095ec346a49de62.tar.bz2 |
staging: wilc1000: remove firmware definition
This patch removes the firmware definitions, STA_FIRMWARE, AP_FIRMWARE, and
P2P_CONCURRENCY_FIRMWARE from the linux_wlan.c file because they are
defined in the Makefile.
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000')
-rw-r--r-- | drivers/staging/wilc1000/linux_wlan.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index df5ee269ccae..8e19095babd9 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -101,18 +101,6 @@ static struct notifier_block g_dev_notifier = { if (g_linux_wlan->oup.wlan_cleanup != NULL) \ g_linux_wlan->oup.wlan_cleanup(); } -#ifndef STA_FIRMWARE -#define STA_FIRMWARE "wifi_firmware.bin" -#endif - -#ifndef AP_FIRMWARE -#define AP_FIRMWARE "wifi_firmware_ap.bin" -#endif - -#ifndef P2P_CONCURRENCY_FIRMWARE -#define P2P_CONCURRENCY_FIRMWARE "wifi_firmware_p2p_concurrency.bin" -#endif - typedef struct android_wifi_priv_cmd { char *buf; int used_len; |