diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-10-12 10:09:15 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-10-12 10:09:15 -0400 |
commit | 59f02834f38c63be537f63a702c69b68af913bfa (patch) | |
tree | 86b5c59b50021ae851a8dffb60d3118d76269b94 /Makefile | |
parent | 91031edcb2a6adf2510478bc81a4df68c5e3daf2 (diff) | |
download | seabios-59f02834f38c63be537f63a702c69b68af913bfa.tar.gz |
Add stubs for USB OHCI support.
Enable USB wrapper functions to call either ohci or ehci helpers.
Implement pci_config_maskw in place of pci_set_bus_master.
Introduce 'struct usb_pipe' in place of 'void *' for pipes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ OUT=out/ SRCBOTH=output.c util.c block.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \ serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \ pnpbios.c pirtable.c vgahooks.c pmm.c ramdisk.c \ - usb.c usb-uhci.c usb-hid.c paravirt.c + usb.c usb-uhci.c usb-ohci.c usb-hid.c paravirt.c SRC16=$(SRCBOTH) system.c disk.c apm.c pcibios.c font.c SRC32=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \ acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \ |