Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131939
b: refs/heads/master
c: 028e141
h: refs/heads/master
i:
  131937: 5a10742
  131935: 4a550c6
v: v3
  • Loading branch information
Dhananjay Phadke authored and David S. Miller committed Feb 24, 2009
1 parent 214aea7 commit df439fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: 044fad0dbb4e814c061916fe5a36851af2fd1135
refs/heads/master: 028e1415a78733fcd2cba4b4c001826cc37a373e
7 changes: 6 additions & 1 deletion trunk/drivers/net/netxen/netxen_nic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,12 @@ netxen_nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
adapter->pci_mem_read = netxen_nic_pci_mem_read_2M;
adapter->pci_mem_write = netxen_nic_pci_mem_write_2M;

mem_ptr0 = ioremap(mem_base, mem_len);
mem_ptr0 = pci_ioremap_bar(pdev, 0);
if (mem_ptr0 == NULL) {
dev_err(&pdev->dev, "failed to map PCI bar 0\n");
return -EIO;
}

pci_len0 = mem_len;
first_page_group_start = 0;
first_page_group_end = 0;
Expand Down

0 comments on commit df439fe

Please sign in to comment.