Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78986
b: refs/heads/master
c: 61bca6e
h: refs/heads/master
v: v3
  • Loading branch information
Stefano Brivio authored and David S. Miller committed Jan 28, 2008
1 parent a859c90 commit 5beb711
Show file tree
Hide file tree
Showing 10 changed files with 915 additions and 514 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: db9683fb19a0f0da1cb4c296ffe1a8db03333cbc
refs/heads/master: 61bca6eb85c863603d6054530e2f65c3b9aba85b
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/b43/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ b43-y += phy.o
b43-y += sysfs.o
b43-y += xmit.o
b43-y += lo.o
b43-y += wa.o
# b43 RFKILL button support
b43-$(CONFIG_B43_RFKILL) += rfkill.o
# b43 LED support
Expand Down
4 changes: 4 additions & 0 deletions trunk/drivers/net/wireless/b43/b43.h
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,10 @@ struct b43_phy {
u16 lofcal;

u16 initval; //FIXME rename?

/* OFDM address read/write caching for hardware auto-increment. */
u16 ofdm_addr;
u8 ofdm_valid; /* 0: invalid, 1: read, 2: write */
};

/* Data structures for DMA transmission, per 80211 core. */
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/net/wireless/b43/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2254,6 +2254,9 @@ static int b43_chip_init(struct b43_wldev *dev)
b43_write16(dev, B43_MMIO_POWERUP_DELAY,
dev->dev->bus->chipco.fast_pwrup_delay);

/* OFDM address caching. */
phy->ofdm_valid = 0;

err = 0;
b43dbg(dev->wl, "Chip initialized\n");
out:
Expand Down
Loading

0 comments on commit 5beb711

Please sign in to comment.