diff options
Diffstat (limited to 'arch/i386/kernel/reboot_fixups.c')
-rw-r--r-- | arch/i386/kernel/reboot_fixups.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/i386/kernel/reboot_fixups.c b/arch/i386/kernel/reboot_fixups.c index c9b87330aeea..10e21a4773dd 100644 --- a/arch/i386/kernel/reboot_fixups.c +++ b/arch/i386/kernel/reboot_fixups.c | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include <asm/delay.h> | 11 | #include <asm/delay.h> |
12 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
13 | #include <linux/reboot_fixups.h> | ||
13 | 14 | ||
14 | static void cs5530a_warm_reset(struct pci_dev *dev) | 15 | static void cs5530a_warm_reset(struct pci_dev *dev) |
15 | { | 16 | { |
@@ -42,7 +43,7 @@ void mach_reboot_fixups(void) | |||
42 | struct pci_dev *dev; | 43 | struct pci_dev *dev; |
43 | int i; | 44 | int i; |
44 | 45 | ||
45 | for (i=0; i < (sizeof(fixups_table)/sizeof(fixups_table[0])); i++) { | 46 | for (i=0; i < ARRAY_SIZE(fixups_table); i++) { |
46 | cur = &(fixups_table[i]); | 47 | cur = &(fixups_table[i]); |
47 | dev = pci_get_device(cur->vendor, cur->device, NULL); | 48 | dev = pci_get_device(cur->vendor, cur->device, NULL); |
48 | if (!dev) | 49 | if (!dev) |