aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-05-22 08:47:15 -0400
committerTom Rini <trini@konsulko.com>2021-07-07 22:22:42 -0400
commit7d0559910f84d0d3f3e308c91c69e1a8d83cc855 (patch)
tree43604db5cb2f635cf41d0e70440269e7864fec60
parent570c3dcfc153e0f18bd897630236da6605dcbe7e (diff)
downloadu-boot-7d0559910f84d0d3f3e308c91c69e1a8d83cc855.zip
u-boot-7d0559910f84d0d3f3e308c91c69e1a8d83cc855.tar.gz
u-boot-7d0559910f84d0d3f3e308c91c69e1a8d83cc855.tar.bz2
sniper: Add build guards around MUSB support code
If MUSB support is disabled, these parts of the code will fail to build. Cc: Paul Kocialkowski <contact@paulk.fr> Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--board/lg/sniper/sniper.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/board/lg/sniper/sniper.c b/board/lg/sniper/sniper.c
index 3065461..a70166a 100644
--- a/board/lg/sniper/sniper.c
+++ b/board/lg/sniper/sniper.c
@@ -43,6 +43,7 @@ U_BOOT_DRVINFO(sniper_serial) = {
.plat = &serial_omap_plat
};
+#if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_USB_MUSB_GADGET)
static struct musb_hdrc_config musb_config = {
.multipoint = 1,
.dyn_fifo = 1,
@@ -61,6 +62,7 @@ static struct musb_hdrc_platform_data musb_platform_data = {
.platform_ops = &omap2430_ops,
.board_data = &musb_board_data,
};
+#endif
void set_muxconf_regs(void)
{
@@ -147,8 +149,9 @@ int misc_init_r(void)
omap_die_id_serial();
/* MUSB */
-
+#if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_USB_MUSB_GADGET)
musb_register(&musb_platform_data, &musb_board_data, (void *)MUSB_BASE);
+#endif
return 0;
}