diff options
Diffstat (limited to 'src/devices/machine/pci-usb.cpp')
-rw-r--r-- | src/devices/machine/pci-usb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/pci-usb.cpp b/src/devices/machine/pci-usb.cpp index 0b45c1bd9ee..28523013576 100644 --- a/src/devices/machine/pci-usb.cpp +++ b/src/devices/machine/pci-usb.cpp @@ -11,7 +11,7 @@ void usb_ohci_device::map(address_map &map) { } -usb_ohci_device::usb_ohci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_ohci_device::usb_ohci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_OHCI, tag, owner, clock) { } @@ -31,7 +31,7 @@ void usb_uhci_device::map(address_map &map) { } -usb_uhci_device::usb_uhci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_uhci_device::usb_uhci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_UHCI, tag, owner, clock) { } @@ -51,7 +51,7 @@ void usb_ehci_device::map(address_map &map) { } -usb_ehci_device::usb_ehci_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +usb_ehci_device::usb_ehci_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : pci_device(mconfig, USB_EHCI, tag, owner, clock) { } |