Skip to content

Commit

Permalink
b43 wireless needs <linux/io.h>
Browse files Browse the repository at this point in the history
b43 wireless needs <linux/io.h>

  linux/drivers/net/wireless/b43/pio.h: In function 'b43_pio_write':
  linux/drivers/net/wireless/b43/pio.h:89: error: implicit declaration of function 'mmiowb'

  linux/drivers/net/wireless/b43/phy.c: In function 'b43_phy_write':
  linux/drivers/net/wireless/b43/phy.c:301: error: implicit declaration of function 'mmiowb'

  linuxdrivers/net/wireless/b43/sysfs.c: In function 'b43_attr_interfmode_store':
  linuxdrivers/net/wireless/b43/sysfs.c:147: error: implicit declaration of function 'mmiowb'

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Oct 13, 2007
1 parent 3649ba0 commit 50e36eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions drivers/net/wireless/b43/phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
*/

#include <linux/delay.h>
#include <linux/io.h>
#include <linux/types.h>

#include "b43.h"
Expand Down
1 change: 1 addition & 0 deletions drivers/net/wireless/b43/pio.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "b43.h"

#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/list.h>
#include <linux/skbuff.h>

Expand Down
5 changes: 3 additions & 2 deletions drivers/net/wireless/b43/sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@
*/

#include <linux/capability.h>
#include <linux/io.h>

#include "b43.h"
#include "sysfs.h"
#include "main.h"
#include "phy.h"

#include <linux/capability.h>

#define GENERIC_FILESIZE 64

static int get_integer(const char *buf, size_t count)
Expand Down

0 comments on commit 50e36eb

Please sign in to comment.