diff options
author | Simon Glass | 2015-11-29 13:17:58 -0700 |
---|---|---|
committer | Simon Glass | 2016-01-12 10:19:09 -0700 |
commit | 8beb0bda9c59146df70b960ce69ecfbd6f744028 (patch) | |
tree | b556a48f262417fba664be1582a618575c20113a /include/bios_emul.h | |
parent | 3f4e1e8efc5b700473f1920e92b521cb0945a6e3 (diff) |
dm: x86: pci: Adjust bios_run_on_x86() to use the DM PCI API
This function should take a struct udevice rather than pci_dev_t. Update it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/bios_emul.h')
-rw-r--r-- | include/bios_emul.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bios_emul.h b/include/bios_emul.h index 3643b82b3a6..80979edd045 100644 --- a/include/bios_emul.h +++ b/include/bios_emul.h @@ -42,7 +42,7 @@ struct vbe_mode_info; int BootVideoCardBIOS(pci_dev_t pcidev, BE_VGAInfo **pVGAInfo, int cleanUp); /* Run a BIOS ROM natively (only supported on x86 machines) */ -void bios_run_on_x86(pci_dev_t pcidev, unsigned long addr, int vesa_mode, +void bios_run_on_x86(struct udevice *dev, unsigned long addr, int vesa_mode, struct vbe_mode_info *mode_info); /** |