* [U-Boot] [PATCH v2] Remove entirely superfluous preprocessor tests from some cmd_*.c files.
@ 2009-11-19 16:00 Robert P. J. Day
2009-12-02 22:47 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2009-11-19 16:00 UTC (permalink / raw)
To: u-boot
A small number of common/cmd_*.c files contain preprocessor tests that
are apparently superfluous since those same tests are used in the
Makefile to control the compilation of those files. Those tests are
clearly redundant as long as they surround the entirety of the source
in those files.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
revision of earlier patch, dropping change to cmd_license.c since
that's already been submitted.
there *are* at least a couple more files like this but they'll
require slightly different tweaking so i'm doing those separately.
diff --git a/common/cmd_cache.c b/common/cmd_cache.c
index 0dfa336..1202258 100644
--- a/common/cmd_cache.c
+++ b/common/cmd_cache.c
@@ -27,8 +27,6 @@
#include <common.h>
#include <command.h>
-#if defined(CONFIG_CMD_CACHE)
-
static int on_off (const char *);
int do_icache ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
@@ -108,5 +106,3 @@ U_BOOT_CMD(
"[on, off]\n"
" - enable or disable data (writethrough) cache"
);
-
-#endif
diff --git a/common/cmd_mgdisk.c b/common/cmd_mgdisk.c
index aadc335..3ba62f6 100644
--- a/common/cmd_mgdisk.c
+++ b/common/cmd_mgdisk.c
@@ -24,8 +24,6 @@
#include <common.h>
#include <command.h>
-#if defined (CONFIG_CMD_MG_DISK)
-
#include <mg_disk.h>
int do_mg_disk_cmd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
@@ -72,5 +70,3 @@ U_BOOT_CMD(
" - sector read : mgd readsec [sector] [to] [counts]\n"
" - sector write : mgd writesec [from] [sector] [counts]"
);
-
-#endif
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Kernel Pedantry.
Web page: http://crashcourse.ca
Twitter: http://twitter.com/rpjday
========================================================================
^ permalink raw reply related [flat|nested] 2+ messages in thread* [U-Boot] [PATCH v2] Remove entirely superfluous preprocessor tests from some cmd_*.c files.
2009-11-19 16:00 [U-Boot] [PATCH v2] Remove entirely superfluous preprocessor tests from some cmd_*.c files Robert P. J. Day
@ 2009-12-02 22:47 ` Wolfgang Denk
0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2009-12-02 22:47 UTC (permalink / raw)
To: u-boot
Dear "Robert P. J. Day",
In message <alpine.LFD.2.00.0911191058270.9286@localhost> you wrote:
>
> A small number of common/cmd_*.c files contain preprocessor tests that
> are apparently superfluous since those same tests are used in the
> Makefile to control the compilation of those files. Those tests are
> clearly redundant as long as they surround the entirety of the source
> in those files.
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Applied, thanks.
But *please* consider using git-format-patch / git-send-email.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
To understand a program you must become both the machine and the
program.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-02 22:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-19 16:00 [U-Boot] [PATCH v2] Remove entirely superfluous preprocessor tests from some cmd_*.c files Robert P. J. Day
2009-12-02 22:47 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox