Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158815
b: refs/heads/master
c: ef2f8d4
h: refs/heads/master
i:
  158813: 02eb1f7
  158811: 61a7d91
  158807: 6256560
  158799: 563bae2
  158783: 48bb42b
v: v3
  • Loading branch information
Kalle Valo authored and John W. Linville committed Jul 10, 2009
1 parent 4cef67c commit d3dc903
Show file tree
Hide file tree
Showing 26 changed files with 759 additions and 49 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c731837855a9dcc2ec0c5367b0e16ad975aaed16
refs/heads/master: ef2f8d45771490de5b8373c25e983ee1e3aee9ea
7 changes: 4 additions & 3 deletions trunk/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 d3dc903

Please sign in to comment.