* [U-Boot] [PATCH] Move the preprocessor test for building flash.c to the Makefile.
@ 2009-11-19 17:38 Robert P. J. Day
2009-11-19 18:03 ` Mike Frysinger
0 siblings, 1 reply; 3+ messages in thread
From: Robert P. J. Day @ 2009-11-19 17:38 UTC (permalink / raw)
To: u-boot
Move the preprocessor test of CONFIG_SYS_NO_FLASH out of flash.c and
back to the Makefile, for readability.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
---
this one is a little uglier since it adds an "#ifndef" check to the
Makefile, but i still consider this to be more readable since it's
potentially misleading to have a hard-coded build of a file in the
Makefile, only to have to go that file to notice that a subsequent
preprocessor check takes the file out of play. except in weird
circumstances, tests like that should be in the Makefile.
i don't think there's a lot of this left.
diff --git a/common/Makefile b/common/Makefile
index 3781738..69629f5 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -152,7 +152,9 @@ COBJS-$(CONFIG_VFD) += cmd_vfd.o
COBJS-$(CONFIG_DDR_SPD) += ddr_spd.o
COBJS-$(CONFIG_HWCONFIG) += hwconfig.o
COBJS-$(CONFIG_CONSOLE_MUX) += iomux.o
+#ifndef CONFIG_SYS_NO_FLASH
COBJS-y += flash.o
+#endif
COBJS-$(CONFIG_CMD_KGDB) += kgdb.o
COBJS-$(CONFIG_KALLSYMS) += kallsyms.o
COBJS-$(CONFIG_LCD) += lcd.o
diff --git a/common/flash.c b/common/flash.c
index eb4b2f5..f5da566 100644
--- a/common/flash.c
+++ b/common/flash.c
@@ -26,8 +26,6 @@
#include <common.h>
#include <flash.h>
-#if !defined(CONFIG_SYS_NO_FLASH)
-
extern flash_info_t flash_info[]; /* info for FLASH chips */
/*-----------------------------------------------------------------------
@@ -222,7 +220,3 @@ void flash_perror (int err)
break;
}
}
-
-/*-----------------------------------------------------------------------
- */
-#endif /* !CONFIG_SYS_NO_FLASH */
========================================================================
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] 3+ messages in thread* [U-Boot] [PATCH] Move the preprocessor test for building flash.c to the Makefile.
2009-11-19 17:38 [U-Boot] [PATCH] Move the preprocessor test for building flash.c to the Makefile Robert P. J. Day
@ 2009-11-19 18:03 ` Mike Frysinger
2009-11-19 18:03 ` Robert P. J. Day
0 siblings, 1 reply; 3+ messages in thread
From: Mike Frysinger @ 2009-11-19 18:03 UTC (permalink / raw)
To: u-boot
On Thursday 19 November 2009 12:38:42 Robert P. J. Day wrote:
> --- a/common/Makefile
> +++ b/common/Makefile
> @@ -152,7 +152,9 @@ COBJS-$(CONFIG_VFD) += cmd_vfd.o
> COBJS-$(CONFIG_DDR_SPD) += ddr_spd.o
> COBJS-$(CONFIG_HWCONFIG) += hwconfig.o
> COBJS-$(CONFIG_CONSOLE_MUX) += iomux.o
> +#ifndef CONFIG_SYS_NO_FLASH
> COBJS-y += flash.o
> +#endif
> COBJS-$(CONFIG_CMD_KGDB) += kgdb.o
> COBJS-$(CONFIG_KALLSYMS) += kallsyms.o
> COBJS-$(CONFIG_LCD) += lcd.o
me thinks you did not test this and/or you dont know how Makefile's work
and/or you forgot to remove debug comments.
regardless, obvious NACK
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20091119/173841e0/attachment.pgp
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] Move the preprocessor test for building flash.c to the Makefile.
2009-11-19 18:03 ` Mike Frysinger
@ 2009-11-19 18:03 ` Robert P. J. Day
0 siblings, 0 replies; 3+ messages in thread
From: Robert P. J. Day @ 2009-11-19 18:03 UTC (permalink / raw)
To: u-boot
On Thu, 19 Nov 2009, Mike Frysinger wrote:
> On Thursday 19 November 2009 12:38:42 Robert P. J. Day wrote:
> > --- a/common/Makefile
> > +++ b/common/Makefile
> > @@ -152,7 +152,9 @@ COBJS-$(CONFIG_VFD) += cmd_vfd.o
> > COBJS-$(CONFIG_DDR_SPD) += ddr_spd.o
> > COBJS-$(CONFIG_HWCONFIG) += hwconfig.o
> > COBJS-$(CONFIG_CONSOLE_MUX) += iomux.o
> > +#ifndef CONFIG_SYS_NO_FLASH
> > COBJS-y += flash.o
> > +#endif
> > COBJS-$(CONFIG_CMD_KGDB) += kgdb.o
> > COBJS-$(CONFIG_KALLSYMS) += kallsyms.o
> > COBJS-$(CONFIG_LCD) += lcd.o
>
> me thinks you did not test this and/or you dont know how Makefile's work
> and/or you forgot to remove debug comments.
>
> regardless, obvious NACK
> -mike
oh, crap, that's what i get for getting lazy and not paying
attention. sorry.
rday
--
========================================================================
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 [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-11-19 18:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-19 17:38 [U-Boot] [PATCH] Move the preprocessor test for building flash.c to the Makefile Robert P. J. Day
2009-11-19 18:03 ` Mike Frysinger
2009-11-19 18:03 ` Robert P. J. Day
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox