mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
usb: board: samsung: Add default board_usb_cleanup() definition for Exynos SoCs
This definition is necessary for Exynos based boards to work properly. Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
This commit is contained in:
parent
2d48aa69bd
commit
28f393cd5a
1 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,7 @@
|
|||
#include <asm/arch/sromc.h>
|
||||
#include <lcd.h>
|
||||
#include <samsung/misc.h>
|
||||
#include <usb.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
|
@ -386,3 +387,8 @@ void reset_misc(void)
|
|||
dm_gpio_set_value(&gpio, 1);
|
||||
}
|
||||
}
|
||||
|
||||
int board_usb_cleanup(int index, enum usb_init_type init)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue