From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Sat, 31 Mar 2012 22:59:08 +0200 Subject: [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused In-Reply-To: <1333216039-21507-10-git-send-email-marex@denx.de> References: <1333216039-21507-1-git-send-email-marex@denx.de> <1333216039-21507-10-git-send-email-marex@denx.de> Message-ID: <20120331225908.3af5779b@wker> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Marek, On Sat, 31 Mar 2012 19:47:15 +0200 Marek Vasut wrote: > Signed-off-by: Marek Vasut > --- > README | 7 ------- > 1 files changed, 0 insertions(+), 7 deletions(-) > > diff --git a/README b/README > index c98afa7..0ebe877 100644 > --- a/README > +++ b/README > @@ -3379,10 +3379,6 @@ Low Level (hardware related) configuration options: > and crc32 is the correct crc32 which the > area should have. > > -- CONFIG_LOOPW > - Add the "loopw" memory command. This only takes effect if > - the memory commands are activated globally (CONFIG_CMD_MEM). Please, no. CONFIG_LOOPW is used if CONFIG_CMD_MEMORY is defined. This text should be fixed instead: s/CONFIG_CMD_MEM/CONFIG_CMD_MEMORY/ Also it probably makes sense to change CONFIG_LOOPW to CONFIG_CMD_LOOPW since this configures an U-Boot command. Same for CONFIG_MX_CYCLIC. ... > @@ -3394,9 +3390,6 @@ Low Level (hardware related) configuration options: > => mwc.l 100 12345678 10 > This command will write 12345678 to address 100 all 10 ms. > > - This only takes effect if the memory commands are activated > - globally (CONFIG_CMD_MEM). > - Same applies here. Thanks, Anatolij