Skip to content

Commit

Permalink
wl1251: add wl1251 prefix to all 1251 files
Browse files Browse the repository at this point in the history
Now that all 1271 files are split, we can add wl1251_ prefix to the files.

Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Reviewed-by: Vidhya Govindan <vidhya.govindan@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Kalle Valo authored and John W. Linville committed Jul 10, 2009
1 parent c731837 commit ef2f8d4
Show file tree
Hide file tree
Showing 25 changed files with 758 additions and 48 deletions.
7 changes: 4 additions & 3 deletions drivers/net/wireless/wl12xx/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
wl1251-objs = main.o spi.o event.o wl1251_tx.o rx.o \
ps.o cmd.o acx.o boot.o init.o wl1251_ops.o \
debugfs.o
wl1251-objs = wl1251_main.o wl1251_spi.o wl1251_event.o \
wl1251_tx.o wl1251_rx.o wl1251_ps.o wl1251_cmd.o \
wl1251_acx.o wl1251_boot.o wl1251_init.o \
wl1251_ops.o wl1251_debugfs.o
obj-$(CONFIG_WL1251) += wl1251.o
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "acx.h"
#include "wl1251_acx.h"

#include <linux/module.h>
#include <linux/crc7.h>
Expand All @@ -7,8 +7,8 @@
#include "wl12xx.h"
#include "wl12xx_80211.h"
#include "reg.h"
#include "spi.h"
#include "ps.h"
#include "wl1251_spi.h"
#include "wl1251_ps.h"

int wl12xx_acx_frame_rates(struct wl12xx *wl, u8 ctrl_rate, u8 ctrl_mod,
u8 mgt_rate, u8 mgt_mod)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define __WL12XX_ACX_H__

#include "wl12xx.h"
#include "cmd.h"
#include "wl1251_cmd.h"

/* Target's information element */
struct acx_header {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
#include <linux/gpio.h>

#include "reg.h"
#include "boot.h"
#include "spi.h"
#include "event.h"
#include "wl1251_boot.h"
#include "wl1251_spi.h"
#include "wl1251_event.h"

static void wl12xx_boot_enable_interrupts(struct wl12xx *wl)
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "cmd.h"
#include "wl1251_cmd.h"

#include <linux/module.h>
#include <linux/crc7.h>
Expand All @@ -7,9 +7,9 @@
#include "wl12xx.h"
#include "wl12xx_80211.h"
#include "reg.h"
#include "spi.h"
#include "ps.h"
#include "acx.h"
#include "wl1251_spi.h"
#include "wl1251_ps.h"
#include "wl1251_acx.h"

/**
* send command to firmware
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
*
*/

#include "debugfs.h"
#include "wl1251_debugfs.h"

#include <linux/skbuff.h>

#include "wl12xx.h"
#include "acx.h"
#include "ps.h"
#include "wl1251_acx.h"
#include "wl1251_ps.h"

/* ms */
#define WL12XX_DEBUGFS_STATS_LIFETIME 1000
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

#include "wl12xx.h"
#include "reg.h"
#include "spi.h"
#include "event.h"
#include "ps.h"
#include "wl1251_spi.h"
#include "wl1251_event.h"
#include "wl1251_ps.h"

static int wl12xx_event_scan_complete(struct wl12xx *wl,
struct event_mailbox *mbox)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
#include <linux/kernel.h>
#include <linux/module.h>

#include "init.h"
#include "wl1251_init.h"
#include "wl12xx_80211.h"
#include "acx.h"
#include "cmd.h"
#include "wl1251_acx.h"
#include "wl1251_cmd.h"

int wl12xx_hw_init_hwenc_config(struct wl12xx *wl)
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
#include "wl12xx_80211.h"
#include "reg.h"
#include "wl1251_ops.h"
#include "spi.h"
#include "event.h"
#include "wl1251_spi.h"
#include "wl1251_event.h"
#include "wl1251_tx.h"
#include "rx.h"
#include "ps.h"
#include "init.h"
#include "debugfs.h"
#include "wl1251_rx.h"
#include "wl1251_ps.h"
#include "wl1251_init.h"
#include "wl1251_debugfs.h"

static void wl12xx_disable_interrupts(struct wl12xx *wl)
{
Expand Down
Loading

0 comments on commit ef2f8d4

Please sign in to comment.