* [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver
@ 2008-01-09 17:42 Larry Johnson
2008-01-10 17:24 ` Stefan Roese
2008-01-11 23:27 ` Wolfgang Denk
0 siblings, 2 replies; 5+ messages in thread
From: Larry Johnson @ 2008-01-09 17:42 UTC (permalink / raw)
To: u-boot
(1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
(2) Use conditional Makefile.o.
Signed-off-by: Larry Johnson <lrj@acm.org>
---
Hi Stefan,
I'm resubmitting this patch, which is based off the current PPC4xx
"master" branch. It may have fallen through the cracks because I
botched the subject line the last time I sent it.
Best regards,
Larry
drivers/hwmon/Makefile | 2 +-
drivers/hwmon/lm73.c | 9 ---------
include/configs/korat.h | 1 -
3 files changed, 1 insertions(+), 11 deletions(-)
diff --git a/drivers/hwmon/Makefile b/drivers/hwmon/Makefile
index 32e3f44..065433a 100644
--- a/drivers/hwmon/Makefile
+++ b/drivers/hwmon/Makefile
@@ -34,7 +34,7 @@ COBJS-y += adm1021.o
COBJS-y += ds1621.o
COBJS-y += ds1722.o
COBJS-y += ds1775.o
-COBJS-y += lm73.o
+COBJS-$(CONFIG_DTT_LM73) += lm73.o
COBJS-y += lm75.o
COBJS-y += lm81.o
diff --git a/drivers/hwmon/lm73.c b/drivers/hwmon/lm73.c
index f9ae012..db8ef66 100644
--- a/drivers/hwmon/lm73.c
+++ b/drivers/hwmon/lm73.c
@@ -31,13 +31,6 @@
*/
#include <common.h>
-
-#ifdef CONFIG_DTT_LM73
-#if !defined(CFG_EEPROM_PAGE_WRITE_ENABLE) || \
- (CFG_EEPROM_PAGE_WRITE_BITS < 1)
-# error "CFG_EEPROM_PAGE_WRITE_ENABLE must be defined and CFG_EEPROM_PAGE_WRITE_BITS must be greater than 1 to use CONFIG_DTT_LM73"
-#endif
-
#include <i2c.h>
#include <dtt.h>
@@ -177,5 +170,3 @@ int dtt_get_temp(int sensor)
{
return (dtt_read(sensor, DTT_READ_TEMP) + 0x0040) >> 7;
} /* dtt_get_temp() */
-
-#endif /* CONFIG_DTT_LM73 */
diff --git a/include/configs/korat.h b/include/configs/korat.h
index 7d0640b..5182972 100644
--- a/include/configs/korat.h
+++ b/include/configs/korat.h
@@ -156,7 +156,6 @@
#define CFG_I2C_MULTI_EEPROMS
#define CFG_I2C_EEPROM_ADDR (0xa8>>1)
#define CFG_I2C_EEPROM_ADDR_LEN 1
-#define CFG_EEPROM_PAGE_WRITE_ENABLE
#define CFG_EEPROM_PAGE_WRITE_BITS 3
#define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
^ permalink raw reply related [flat|nested] 5+ messages in thread* [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver
2008-01-09 17:42 [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver Larry Johnson
@ 2008-01-10 17:24 ` Stefan Roese
2008-01-10 18:29 ` Jean-Christophe PLAGNIOL-VILLARD
2008-01-11 23:27 ` Wolfgang Denk
2008-01-11 23:27 ` Wolfgang Denk
1 sibling, 2 replies; 5+ messages in thread
From: Stefan Roese @ 2008-01-10 17:24 UTC (permalink / raw)
To: u-boot
On Wednesday 09 January 2008, Larry Johnson wrote:
> (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
>
> (2) Use conditional Makefile.o.
>
> Signed-off-by: Larry Johnson <lrj@acm.org>
Acked-by: Stefan Roese <sr@denx.de>
Wolfgang, will you apply this patch directly? It doesn't really belong the 4xx
repo.
Thanks.
Best regards,
Stefan
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver
2008-01-10 17:24 ` Stefan Roese
@ 2008-01-10 18:29 ` Jean-Christophe PLAGNIOL-VILLARD
2008-01-11 23:27 ` Wolfgang Denk
1 sibling, 0 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-01-10 18:29 UTC (permalink / raw)
To: u-boot
On 18:24 Thu 10 Jan , Stefan Roese wrote:
> On Wednesday 09 January 2008, Larry Johnson wrote:
> > (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
> >
> > (2) Use conditional Makefile.o.
> >
> > Signed-off-by: Larry Johnson <lrj@acm.org>
>
> Acked-by: Stefan Roese <sr@denx.de>
Thanks, it help me to prepare the kconfig for the next merge
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Best Regards,
J.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver
2008-01-10 17:24 ` Stefan Roese
2008-01-10 18:29 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2008-01-11 23:27 ` Wolfgang Denk
1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2008-01-11 23:27 UTC (permalink / raw)
To: u-boot
In message <200801101824.51394.sr@denx.de> you wrote:
> On Wednesday 09 January 2008, Larry Johnson wrote:
> > (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
> >
> > (2) Use conditional Makefile.o.
> >
> > Signed-off-by: Larry Johnson <lrj@acm.org>
>
> Acked-by: Stefan Roese <sr@denx.de>
>
> Wolfgang, will you apply this patch directly? It doesn't really belong the 4xx
> repo.
Done. Thanks.
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
Abstainer: A weak person who yields to the temptation of denying him-
self a pleasure. A total abstainer is one who abstains from every-
thing but abstention, and especially from inactivity in the affairs
of others. - Ambrose Bierce
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver
2008-01-09 17:42 [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver Larry Johnson
2008-01-10 17:24 ` Stefan Roese
@ 2008-01-11 23:27 ` Wolfgang Denk
1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2008-01-11 23:27 UTC (permalink / raw)
To: u-boot
In message <4785078B.8010404@acm.org> you wrote:
> (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
>
> (2) Use conditional Makefile.o.
>
> Signed-off-by: Larry Johnson <lrj@acm.org>
Applied, thanks.
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
Single tasking: Just Say No.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-01-11 23:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-09 17:42 [U-Boot-Users] [PATCH (RESUBMIT)] Remove superfluous preprocessor conditionals from LM73 driver Larry Johnson
2008-01-10 17:24 ` Stefan Roese
2008-01-10 18:29 ` Jean-Christophe PLAGNIOL-VILLARD
2008-01-11 23:27 ` Wolfgang Denk
2008-01-11 23:27 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox