mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
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: Ajay Singh <ajay.kathat@microchip.com> Link: https://lore.kernel.org/r/20191105095058.24223-3-ajay.kathat@microchip.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5e3bafbd14
commit
6cecbb2c67
@ -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
|
||||
|
@ -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
|
@ -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,
|
@ -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
|
@ -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,
|
@ -4,7 +4,7 @@
|
||||
* All rights reserved.
|
||||
*/
|
||||
|
||||
#include "wilc_wfi_cfgoperations.h"
|
||||
#include "cfg80211.h"
|
||||
|
||||
struct wilc_wfi_radiotap_hdr {
|
||||
struct ieee80211_radiotap_header hdr;
|
@ -10,8 +10,8 @@
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/inetdevice.h>
|
||||
|
||||
#include "wilc_wfi_cfgoperations.h"
|
||||
#include "wilc_wlan_cfg.h"
|
||||
#include "cfg80211.h"
|
||||
#include "wlan_cfg.h"
|
||||
|
||||
#define WILC_MULTICAST_TABLE_SIZE 8
|
||||
|
@ -14,9 +14,9 @@
|
||||
#include <linux/if_arp.h>
|
||||
#include <linux/gpio/consumer.h>
|
||||
|
||||
#include "wilc_hif.h"
|
||||
#include "wilc_wlan.h"
|
||||
#include "wilc_wlan_cfg.h"
|
||||
#include "hif.h"
|
||||
#include "wlan.h"
|
||||
#include "wlan_cfg.h"
|
||||
|
||||
#define FLOW_CONTROL_LOWER_THRESHOLD 128
|
||||
#define FLOW_CONTROL_UPPER_THRESHOLD 256
|
@ -8,8 +8,8 @@
|
||||
#include <linux/mmc/sdio_func.h>
|
||||
#include <linux/mmc/host.h>
|
||||
|
||||
#include "wilc_wfi_netdevice.h"
|
||||
#include "wilc_wfi_cfgoperations.h"
|
||||
#include "netdev.h"
|
||||
#include "cfg80211.h"
|
||||
|
||||
#define SDIO_MODALIAS "wilc1000_sdio"
|
||||
|
@ -7,8 +7,8 @@
|
||||
#include <linux/clk.h>
|
||||
#include <linux/spi/spi.h>
|
||||
|
||||
#include "wilc_wfi_netdevice.h"
|
||||
#include "wilc_wfi_cfgoperations.h"
|
||||
#include "netdev.h"
|
||||
#include "cfg80211.h"
|
||||
|
||||
struct wilc_spi {
|
||||
int crc_off;
|
@ -6,8 +6,8 @@
|
||||
|
||||
#include <linux/if_ether.h>
|
||||
#include <linux/ip.h>
|
||||
#include "wilc_wfi_cfgoperations.h"
|
||||
#include "wilc_wlan_cfg.h"
|
||||
#include "cfg80211.h"
|
||||
#include "wlan_cfg.h"
|
||||
|
||||
static inline bool is_wilc1000(u32 id)
|
||||
{
|
@ -4,10 +4,10 @@
|
||||
* All rights reserved.
|
||||
*/
|
||||
|
||||
#include "wilc_wlan_if.h"
|
||||
#include "wilc_wlan.h"
|
||||
#include "wilc_wlan_cfg.h"
|
||||
#include "wilc_wfi_netdevice.h"
|
||||
#include "wlan_if.h"
|
||||
#include "wlan.h"
|
||||
#include "wlan_cfg.h"
|
||||
#include "netdev.h"
|
||||
|
||||
enum cfg_cmd_type {
|
||||
CFG_BYTE_CMD = 0,
|
Loading…
Reference in New Issue
Block a user