[U-Boot] [PATCH] AM3517 CraneBoard: Fix typo on CONFIG_CMD_STORAGE

This trivial patch fixes a typo in the board config of the AM3517 CraneBoard: CONGIG_CMD_STORAGE -> CONFIG_CMD_STORAGE
Signed-off-by: Lars Poeschel poeschel@lemonage.de --- include/configs/am3517_crane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/am3517_crane.h b/include/configs/am3517_crane.h index 5d568604a6..31a28aa7bf 100644 --- a/include/configs/am3517_crane.h +++ b/include/configs/am3517_crane.h @@ -88,7 +88,7 @@
#ifdef CONFIG_USB_MUSB_HCD
-#define CONGIG_CMD_STORAGE +#define CONFIG_CMD_STORAGE
#ifdef CONFIG_USB_KEYBOARD #define CONFIG_SYS_USB_EVENT_POLL

On Fri, Feb 03, 2017 at 11:49:38AM +0100, Lars Poeschel wrote:
This trivial patch fixes a typo in the board config of the AM3517 CraneBoard: CONGIG_CMD_STORAGE -> CONFIG_CMD_STORAGE
Signed-off-by: Lars Poeschel poeschel@lemonage.de
include/configs/am3517_crane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/am3517_crane.h b/include/configs/am3517_crane.h index 5d568604a6..31a28aa7bf 100644 --- a/include/configs/am3517_crane.h +++ b/include/configs/am3517_crane.h @@ -88,7 +88,7 @@
#ifdef CONFIG_USB_MUSB_HCD
-#define CONGIG_CMD_STORAGE +#define CONFIG_CMD_STORAGE
#ifdef CONFIG_USB_KEYBOARD #define CONFIG_SYS_USB_EVENT_POLL
But CONFIG_CMD_STORAGE isn't a real symbol at all, there's just 4 typos of 'CONGIG_CMD_STORAGE', so lets just delete them all, thanks!
participants (2)
-
Lars Poeschel
-
Tom Rini