Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 265663
b: refs/heads/master
c: cbe1e82
h: refs/heads/master
i:
  265661: 1457109
  265659: 85fa79f
  265655: eb2527d
  265647: f912466
  265631: 24ab057
  265599: 64cc843
v: v3
  • Loading branch information
Rafał Miłecki authored and John W. Linville committed Aug 24, 2011
1 parent f6a2436 commit 1333c52
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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: 948990251508d8d41f5dd2c9988d415fb8fb49c7
refs/heads/master: cbe1e82a543dae06ffdba9bc108a1a22dc55cde3
9 changes: 7 additions & 2 deletions trunk/drivers/net/wireless/b43/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4654,8 +4654,13 @@ static int b43_wireless_core_init(struct b43_wldev *dev)
b43_shm_write16(dev, B43_SHM_SCRATCH, B43_SHM_SC_MAXCONT, 0x3FF);

if (b43_bus_host_is_pcmcia(dev->dev) ||
b43_bus_host_is_sdio(dev->dev) ||
dev->use_pio) {
b43_bus_host_is_sdio(dev->dev)) {
dev->__using_pio_transfers = 1;
err = b43_pio_init(dev);
} else if (dev->use_pio) {
b43warn(dev->wl, "Forced PIO by use_pio module parameter. "
"This should not be needed and will result in lower "
"performance.\n");
dev->__using_pio_transfers = 1;
err = b43_pio_init(dev);
} else {
Expand Down

0 comments on commit 1333c52

Please sign in to comment.