Commit 6cecbb2c authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: remove 'wilc_' prefix from filenames



Remove 'wilc_' prefix from filenames, the driver is already present
inside the 'wilc1000' directory so no need to add 'wilc_' in
filenames.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Link: https://lore.kernel.org/r/20191105095058.24223-3-ajay.kathat@microchip.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e3bafbd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -4,11 +4,11 @@ obj-$(CONFIG_WILC1000) += wilc1000.o
ccflags-y += -DFIRMWARE_1002=\"atmel/wilc1002_firmware.bin\" \
		-DFIRMWARE_1003=\"atmel/wilc1003_firmware.bin\"

wilc1000-objs := wilc_wfi_cfgoperations.o wilc_netdev.o wilc_mon.o \
			wilc_hif.o wilc_wlan_cfg.o wilc_wlan.o
wilc1000-objs := cfg80211.o netdev.o mon.o \
			hif.o wlan_cfg.o wlan.o

obj-$(CONFIG_WILC1000_SDIO) += wilc1000-sdio.o
wilc1000-sdio-objs += wilc_sdio.o
wilc1000-sdio-objs += sdio.o

obj-$(CONFIG_WILC1000_SPI) += wilc1000-spi.o
wilc1000-spi-objs += wilc_spi.o
wilc1000-spi-objs += spi.o
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
 * All rights reserved.
 */

#include "wilc_wfi_cfgoperations.h"
#include "cfg80211.h"

#define FRAME_TYPE_ID			0
#define ACTION_CAT_ID			24
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@

#ifndef NM_WFI_CFGOPERATIONS
#define NM_WFI_CFGOPERATIONS
#include "wilc_wfi_netdevice.h"
#include "netdev.h"

struct wiphy *wilc_cfg_alloc(void);
int wilc_cfg80211_init(struct wilc **wilc, struct device *dev, int io_type,
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
 * All rights reserved.
 */

#include "wilc_wfi_netdevice.h"
#include "netdev.h"

#define WILC_HIF_SCAN_TIMEOUT_MS                5000
#define WILC_HIF_CONNECT_TIMEOUT_MS             9500
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
#ifndef HOST_INT_H
#define HOST_INT_H
#include <linux/ieee80211.h>
#include "wilc_wlan_if.h"
#include "wlan_if.h"

enum {
	WILC_IDLE_MODE = 0x0,
Loading