aboutsummaryrefslogtreecommitdiff
path: root/hw/usb/hcd-xhci-sysbus.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-10-20 09:48:36 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-10-21 11:36:19 +0200
commit848db5257db7f5a199373f3ac870893e7d770d46 (patch)
tree6acdcd7c6096fbb416c2df0c29bdf393ad668f78 /hw/usb/hcd-xhci-sysbus.c
parent284e269d7ecd511084cc83d6b5ce3bca4db38f53 (diff)
downloadqemu-848db5257db7f5a199373f3ac870893e7d770d46.zip
qemu-848db5257db7f5a199373f3ac870893e7d770d46.tar.gz
qemu-848db5257db7f5a199373f3ac870893e7d770d46.tar.bz2
usb/xhci: add include/hw/usb/xhci.h header file
Move a bunch of defines which might be needed outside core xhci code to that place. Add XHCI_ prefixes to avoid name clashes. No functional change. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Sai Pavan Boddu <sai.pavan.boddu@xilinx.com> Message-id: 20201020074844.5304-3-kraxel@redhat.com
Diffstat (limited to 'hw/usb/hcd-xhci-sysbus.c')
-rw-r--r--hw/usb/hcd-xhci-sysbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/usb/hcd-xhci-sysbus.c b/hw/usb/hcd-xhci-sysbus.c
index 852ca51..5706184 100644
--- a/hw/usb/hcd-xhci-sysbus.c
+++ b/hw/usb/hcd-xhci-sysbus.c
@@ -69,8 +69,8 @@ static void xhci_sysbus_instance_init(Object *obj)
}
static Property xhci_sysbus_props[] = {
- DEFINE_PROP_UINT32("intrs", XHCISysbusState, xhci.numintrs, MAXINTRS),
- DEFINE_PROP_UINT32("slots", XHCISysbusState, xhci.numslots, MAXSLOTS),
+ DEFINE_PROP_UINT32("intrs", XHCISysbusState, xhci.numintrs, XHCI_MAXINTRS),
+ DEFINE_PROP_UINT32("slots", XHCISysbusState, xhci.numslots, XHCI_MAXSLOTS),
DEFINE_PROP_END_OF_LIST(),
};