diff options
Diffstat (limited to 'drivers/mtd/maps/ichxrom.c')
-rw-r--r-- | drivers/mtd/maps/ichxrom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/maps/ichxrom.c b/drivers/mtd/maps/ichxrom.c index ea5073781b3a..db4b570d874a 100644 --- a/drivers/mtd/maps/ichxrom.c +++ b/drivers/mtd/maps/ichxrom.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/mtd/map.h> | 14 | #include <linux/mtd/map.h> |
15 | #include <linux/mtd/cfi.h> | 15 | #include <linux/mtd/cfi.h> |
16 | #include <linux/mtd/flashchip.h> | 16 | #include <linux/mtd/flashchip.h> |
17 | #include <linux/config.h> | ||
18 | #include <linux/pci.h> | 17 | #include <linux/pci.h> |
19 | #include <linux/pci_ids.h> | 18 | #include <linux/pci_ids.h> |
20 | #include <linux/list.h> | 19 | #include <linux/list.h> |
@@ -177,9 +176,10 @@ static int __devinit ichxrom_init_one (struct pci_dev *pdev, | |||
177 | window->rsrc.parent = NULL; | 176 | window->rsrc.parent = NULL; |
178 | printk(KERN_DEBUG MOD_NAME | 177 | printk(KERN_DEBUG MOD_NAME |
179 | ": %s(): Unable to register resource" | 178 | ": %s(): Unable to register resource" |
180 | " 0x%.08lx-0x%.08lx - kernel bug?\n", | 179 | " 0x%.16llx-0x%.16llx - kernel bug?\n", |
181 | __func__, | 180 | __func__, |
182 | window->rsrc.start, window->rsrc.end); | 181 | (unsigned long long)window->rsrc.start, |
182 | (unsigned long long)window->rsrc.end); | ||
183 | } | 183 | } |
184 | 184 | ||
185 | /* Map the firmware hub into my address space. */ | 185 | /* Map the firmware hub into my address space. */ |