diff options
author | Pavel Roskin <proski@gnu.org> | 2005-12-16 18:49:53 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-12-24 10:05:50 -0500 |
commit | c8cb00f6ac9aa13b0575726163b165fd2276ff25 (patch) | |
tree | 62dafcea2b222a2425d7a580c8678def4d578277 /drivers | |
parent | c162eeaa21fde6c27112690f5bc0a461a9f1763e (diff) |
[PATCH] orinoco_nortel: Fix incorrect PCI resource use
orinoco_nortel was broken during conversion to iomem API. Wrong PCI BAR
is used for chipset registers. Reported by Tomas Novak <tap@post.cz>
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/orinoco_nortel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco_nortel.c b/drivers/net/wireless/orinoco_nortel.c index d8afd51ff8a5..e39c08b88700 100644 --- a/drivers/net/wireless/orinoco_nortel.c +++ b/drivers/net/wireless/orinoco_nortel.c | |||
@@ -165,7 +165,7 @@ static int nortel_pci_init_one(struct pci_dev *pdev, | |||
165 | goto fail_resources; | 165 | goto fail_resources; |
166 | } | 166 | } |
167 | 167 | ||
168 | iomem = pci_iomap(pdev, 3, 0); | 168 | iomem = pci_iomap(pdev, 2, 0); |
169 | if (!iomem) { | 169 | if (!iomem) { |
170 | err = -ENOMEM; | 170 | err = -ENOMEM; |
171 | goto fail_map_io; | 171 | goto fail_map_io; |