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 <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Bin Meng 2015-04-24 15:48:04 +08:00 committed by Simon Glass
parent d57c2f24fc
commit 81d0b354b0
1 changed files with 2 additions and 2 deletions

View File

@ -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;