diff options
author | Tom Rini | 2015-09-07 08:56:23 -0400 |
---|---|---|
committer | Tom Rini | 2015-09-07 08:56:23 -0400 |
commit | cdc7732f3737f2bb97b77eb3d7c9da344bb73612 (patch) | |
tree | 5d3a3567a1a58335ed2f38d8228cf24483f79b14 /board | |
parent | a6003397f7b74f7af6c21954073e046de08f43c9 (diff) | |
parent | 49b4c5c700077e387fef61a7225f92d190ee0c45 (diff) |
Merge git://git.denx.de/u-boot-usb
Diffstat (limited to 'board')
-rw-r--r-- | board/h2200/h2200.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board/h2200/h2200.c b/board/h2200/h2200.c index 66ae4b6906b..01f8e67be14 100644 --- a/board/h2200/h2200.c +++ b/board/h2200/h2200.c @@ -59,3 +59,15 @@ int dram_init(void) gd->ram_size = CONFIG_SYS_SDRAM_SIZE; return 0; } + +#ifdef CONFIG_USB_GADGET_PXA2XX +int board_usb_init(int index, enum usb_init_type init) +{ + return 0; +} + +int board_usb_cleanup(int index, enum usb_init_type init) +{ + return 0; +} +#endif |