aboutsummaryrefslogtreecommitdiffstats
path: root/src/hw
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-09-30 13:14:31 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-10-13 11:04:03 +0200
commiteff73e281852fe9dc1c028a96a6e12c2373cfdd5 (patch)
tree07ed79a4719cf291015a02f3f667faa497bffdf4 /src/hw
parentdfac05be204f5829b15b52fe23d08722e5dc1eac (diff)
downloadseabios-eff73e281852fe9dc1c028a96a6e12c2373cfdd5.tar.gz
usb: add boot prio support for mmio host adapters
Add mmio field to usb controller struct, add support for mmio-mapped usb host adapters to boot order handling. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20200930111433.21533-2-kraxel@redhat.com
Diffstat (limited to 'src/hw')
-rw-r--r--src/hw/usb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hw/usb.h b/src/hw/usb.h
index 2cfb5721..887f2064 100644
--- a/src/hw/usb.h
+++ b/src/hw/usb.h
@@ -35,6 +35,7 @@ struct usb_s {
struct usb_pipe *freelist;
struct mutex_s resetlock;
struct pci_device *pci;
+ void *mmio;
u8 type;
u8 maxaddr;
};