From: Bin Meng Date: Fri, 24 Apr 2015 07:48:04 +0000 (+0800) Subject: pci: Remove parameter 'class' of pci_rom_load() X-Git-Tag: v2015.07-rc1~45 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=81d0b354b04b7d3012f2388af3107bee14d3bf86;p=oweals%2Fu-boot.git pci: Remove parameter 'class' of pci_rom_load() pci_rom_load() does not use its parameter 'class', so remove it. Signed-off-by: Bin Meng Acked-by: Simon Glass --- diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c index 49c118d74a..37450c8e31 100644 --- a/drivers/pci/pci_rom.c +++ b/drivers/pci/pci_rom.c @@ -139,7 +139,7 @@ static int pci_rom_probe(pci_dev_t dev, uint class, return 0; } -int pci_rom_load(uint16_t class, struct pci_rom_header *rom_header, +int pci_rom_load(struct pci_rom_header *rom_header, struct pci_rom_header **ram_headerp) { struct pci_rom_data *rom_data; @@ -253,7 +253,7 @@ int pci_run_vga_bios(pci_dev_t dev, int (*int15_handler)(void), int exec_method) if (ret) return ret; - ret = pci_rom_load(class, rom, &ram); + ret = pci_rom_load(rom, &ram); if (ret) return ret;