diff options
author | Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> | 2013-07-24 14:26:31 +0530 |
---|---|---|
committer | Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> | 2013-07-24 14:46:22 +0530 |
commit | c4ddc59f676ee4fbdb03d3905904c48b150abf85 (patch) | |
tree | b2d60e398b47a10ebd953c5fbac4739f27c237ea /slof/fs/usb | |
parent | 3c7febb48f971621ac368807d6e2a2a60ab06ce4 (diff) | |
download | SLOF-c4ddc59f676ee4fbdb03d3905904c48b150abf85.zip SLOF-c4ddc59f676ee4fbdb03d3905904c48b150abf85.tar.gz SLOF-c4ddc59f676ee4fbdb03d3905904c48b150abf85.tar.bz2 |
usb-core: registration and makefiles
* Introduce libusb
* USB core register routine and required forth changes
* USB OHCI skeleton file
Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Acked-by: Thomas Huth <thuth@de.ibm.com>
Diffstat (limited to 'slof/fs/usb')
-rw-r--r-- | slof/fs/usb/usb-static.fs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/slof/fs/usb/usb-static.fs b/slof/fs/usb/usb-static.fs index 9d40fc0..e6b3fd5 100644 --- a/slof/fs/usb/usb-static.fs +++ b/slof/fs/usb/usb-static.fs @@ -41,4 +41,7 @@ : usb-scan ( -- ) ." Scanning USB " cr -; + ohci-alias-num 1 >= IF + USB-OHCI-REGISTER + then +;
\ No newline at end of file |