From: Andrew Morton Make this array static so it doesn't have to be built at runtime. Cc: Alan Cox Signed-off-by: Andrew Morton --- drivers/ata/pata_via.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ata/pata_via.c~pata_via-suspend-resume-support-fix drivers/ata/pata_via.c --- a/drivers/ata/pata_via.c~pata_via-suspend-resume-support-fix +++ a/drivers/ata/pata_via.c @@ -388,7 +388,7 @@ static void via_config_fifo(struct pci_d enable &= 3; if (flags & VIA_SET_FIFO) { - u8 fifo_setting[4] = {0x00, 0x60, 0x00, 0x20}; + static const u8 fifo_setting[4] = {0x00, 0x60, 0x00, 0x20}; u8 fifo; pci_read_config_byte(pdev, 0x43, &fifo); _