Commit 63dc2762 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] fix 64bit cleanness in Natsemi SCx200 IDE

parent f730b52b
...@@ -83,7 +83,7 @@ static struct pci_dev *bmide_dev; ...@@ -83,7 +83,7 @@ static struct pci_dev *bmide_dev;
static int sc1200_get_info (char *buffer, char **addr, off_t offset, int count) static int sc1200_get_info (char *buffer, char **addr, off_t offset, int count)
{ {
char *p = buffer; char *p = buffer;
u32 bibma = pci_resource_start(bmide_dev, 4); unsigned long bibma = pci_resource_start(bmide_dev, 4);
u8 c0 = 0, c1 = 0; u8 c0 = 0, c1 = 0;
/* /*
...@@ -91,8 +91,8 @@ static int sc1200_get_info (char *buffer, char **addr, off_t offset, int count) ...@@ -91,8 +91,8 @@ static int sc1200_get_info (char *buffer, char **addr, off_t offset, int count)
* to investigate: * to investigate:
*/ */
c0 = inb_p((unsigned short)bibma + 0x02); c0 = inb_p(bibma + 0x02);
c1 = inb_p((unsigned short)bibma + 0x0a); c1 = inb_p(bibma + 0x0a);
p += sprintf(p, "\n National SCx200 Chipset.\n"); p += sprintf(p, "\n National SCx200 Chipset.\n");
p += sprintf(p, "--------------- Primary Channel ---------------- Secondary Channel -------------\n"); p += sprintf(p, "--------------- Primary Channel ---------------- Secondary Channel -------------\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment