From: Anatolij Gustschin <agust@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE
Date: Sun, 1 Apr 2012 00:35:58 +0200 [thread overview]
Message-ID: <20120401003558.317c416a@wker> (raw)
In-Reply-To: <1333216039-21507-14-git-send-email-marex@denx.de>
Hi Marek,
On Sat, 31 Mar 2012 19:47:19 +0200
Marek Vasut <marex@denx.de> wrote:
> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
> include/configs/am3517_crane.h | 2 +-
> include/configs/am3517_evm.h | 2 +-
> include/configs/cam_enc_4xx.h | 2 +-
> include/configs/da830evm.h | 2 +-
> include/configs/davinci_dm365evm.h | 4 ++--
> include/configs/davinci_dvevm.h | 2 +-
> include/configs/omap3_evm_common.h | 2 +-
> 7 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/include/configs/am3517_crane.h b/include/configs/am3517_crane.h
> index b0dd2f0..bfa5676 100644
> --- a/include/configs/am3517_crane.h
> +++ b/include/configs/am3517_crane.h
> @@ -111,7 +111,7 @@
> #define CONFIG_CMD_USB
>
> #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONFIG_CMD_USB_STORAGE
we have CONFIG_CMD_USB and CONFIG_USB_STORAGE, but no CONFIG_CMD_USB_STORAGE.
So the fix would be just to remove CONGIG_CMD_STORAGE.
> #define CONFIG_CMD_FAT
>
> #ifdef CONFIG_USB_KEYBOARD
> diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
> index b5f75d1..00e85a9 100644
> --- a/include/configs/am3517_evm.h
> +++ b/include/configs/am3517_evm.h
> @@ -110,7 +110,7 @@
> #define CONFIG_CMD_USB
>
> #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONGIG_CMD_USB_STORAGE
Same here.
> #define CONFIG_CMD_FAT
>
> #ifdef CONFIG_USB_KEYBOARD
> diff --git a/include/configs/cam_enc_4xx.h b/include/configs/cam_enc_4xx.h
> index 99856eb..631d6d7 100644
> --- a/include/configs/cam_enc_4xx.h
> +++ b/include/configs/cam_enc_4xx.h
> @@ -516,7 +516,7 @@
>
> #define CONFIG_CMD_USB /* include support for usb cmd */
> #define CONFIG_USB_STORAGE /* MSC class support */
> -#define CONFIG_CMD_STORAGE /* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE /* inclue support for usb-storage cmd */
> #define CONFIG_CMD_FAT /* inclue support for FAT/storage */
> #define CONFIG_DOS_PARTITION /* inclue support for FAT/storage */
only CONFIG_CMD_STORAGE should be removed.
Btw., I see some typos here: "inclue".
> diff --git a/include/configs/da830evm.h b/include/configs/da830evm.h
> index 4532e4f..0b45c12 100644
> --- a/include/configs/da830evm.h
> +++ b/include/configs/da830evm.h
> @@ -248,7 +248,7 @@
> #define CONFIG_CMD_USB /* include support for usb cmd */
>
> #define CONFIG_USB_STORAGE /* MSC class support */
> -#define CONFIG_CMD_STORAGE /* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE /* inclue support for usb-storage cmd */
> #define CONFIG_CMD_FAT /* inclue support for FAT/storage */
> #define CONFIG_DOS_PARTITION /* inclue support for FAT/storage */
Same here.
> diff --git a/include/configs/davinci_dm365evm.h b/include/configs/davinci_dm365evm.h
> index a75bce6..38bd4cb 100644
> --- a/include/configs/davinci_dm365evm.h
> +++ b/include/configs/davinci_dm365evm.h
> @@ -99,7 +99,7 @@
>
> #ifdef CONFIG_USB_DAVINCI
> #define CONFIG_CMD_USB /* include support for usb */
> -#define CONFIG_CMD_STORAGE /* include support for usb */
> +#define CONFIG_CMD_USB_STORAGE /* include support for usb */
> #define CONFIG_CMD_FAT /* include support for FAT/storage*/
> #define CONFIG_DOS_PARTITION /* include support for FAT/storage*/
Here CONFIG_CMD_STORAGE should be replaced with CONFIG_USB_STORAGE.
> #endif
> @@ -107,7 +107,7 @@
> #ifdef CONFIG_MUSB_HCD /* include support for usb host */
> #define CONFIG_CMD_USB /* include support for usb cmd */
> #define CONFIG_USB_STORAGE /* MSC class support */
> -#define CONFIG_CMD_STORAGE /* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE /* inclue support for usb-storage cmd */
> #define CONFIG_CMD_FAT /* inclue support for FAT/storage */
> #define CONFIG_DOS_PARTITION /* inclue support for FAT/storage */
CONFIG_CMD_STORAGE should be replaced with CONFIG_USB_STORAGE.
Also typos here.
> diff --git a/include/configs/davinci_dvevm.h b/include/configs/davinci_dvevm.h
> index 310d577..3976149 100644
> --- a/include/configs/davinci_dvevm.h
> +++ b/include/configs/davinci_dvevm.h
> @@ -222,7 +222,7 @@
> #define CONFIG_CMD_USB
> #ifdef CONFIG_MUSB_HCD
> #define CONFIG_USB_STORAGE
> -#define CONFIG_CMD_STORAGE
> +#define CONFIG_CMD_USB_STORAGE
Only drop CONFIG_CMD_STORAGE.
> diff --git a/include/configs/omap3_evm_common.h b/include/configs/omap3_evm_common.h
> index 4910dda..4dfa44b 100644
> --- a/include/configs/omap3_evm_common.h
> +++ b/include/configs/omap3_evm_common.h
> @@ -168,7 +168,7 @@
> #define CONFIG_CMD_USB
>
> #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONGIG_CMD_USB_STORAGE
Ditto.
This cleanup patch should also fix "include/configs/bfin_adi_common.h".
s/CONFIG_CMD_USB_STORAGE/CONFIG_USB_STORAGE/
Thanks,
Anatolij
next prev parent reply other threads:[~2012-03-31 22:35 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
2012-03-31 20:06 ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 03/14] CMD: Drop CMD_CAN, " Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, " Marek Vasut
2012-03-31 20:08 ` Anatolij Gustschin
2012-03-31 20:13 ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
2012-03-31 20:13 ` Anatolij Gustschin
2012-04-02 0:12 ` Nobuhiro Iwamatsu
2012-03-31 17:47 ` [U-Boot] [PATCH 06/14] CMD: Drop CONFIG_CMD_EMMC, " Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board Marek Vasut
2012-03-31 21:02 ` Anatolij Gustschin
2012-03-31 21:28 ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused Marek Vasut
2012-03-31 21:09 ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM Marek Vasut
2012-03-31 21:03 ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused Marek Vasut
2012-03-31 20:59 ` Anatolij Gustschin
2012-03-31 21:29 ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme Marek Vasut
2012-03-31 21:11 ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 12/14] CMD: Fix CONFIG_CMD_SAVEBP_WRITE_SIZE -> CONFIG_CMD_SPL_WRITE_SIZE Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic Marek Vasut
2012-03-31 21:20 ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE Marek Vasut
2012-03-31 22:35 ` Anatolij Gustschin [this message]
2012-03-31 20:04 ` [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Anatolij Gustschin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120401003558.317c416a@wker \
--to=agust@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox