* [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c
@ 2008-09-29 7:57 Heiko Schocher
2008-09-29 9:12 ` Wolfgang Denk
2008-10-14 16:25 ` Wolfgang Denk
0 siblings, 2 replies; 3+ messages in thread
From: Heiko Schocher @ 2008-09-29 7:57 UTC (permalink / raw)
To: u-boot
Signed-off-by: Heiko Schocher <hs@denx.de>
---
drivers/i2c/soft_i2c.c | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c
index f426bbb..bda0aaf 100644
--- a/drivers/i2c/soft_i2c.c
+++ b/drivers/i2c/soft_i2c.c
@@ -93,10 +93,10 @@ static uchar read_byte (int);
*/
static void send_reset(void)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
int j;
@@ -125,10 +125,10 @@ static void send_reset(void)
*/
static void send_start(void)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
@@ -147,10 +147,10 @@ static void send_start(void)
*/
static void send_stop(void)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
@@ -172,10 +172,10 @@ static void send_stop(void)
*/
static void send_ack(int ack)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
@@ -197,10 +197,10 @@ static void send_ack(int ack)
*/
static int write_byte(uchar data)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
int j;
@@ -290,10 +290,10 @@ int i2c_set_bus_speed(unsigned int speed)
*/
static uchar read_byte(int ack)
{
-#ifdef CONFIG_MPC8260
+#if defined(CONFIG_MPC8260)
volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
#endif
-#ifdef CONFIG_8xx
+#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
volatile immap_t *immr = (immap_t *)CFG_IMMR;
#endif
int data;
--
1.5.6.1
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c
2008-09-29 7:57 [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c Heiko Schocher
@ 2008-09-29 9:12 ` Wolfgang Denk
2008-10-14 16:25 ` Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2008-09-29 9:12 UTC (permalink / raw)
To: u-boot
Dear Heiko Schocher,
In message <48E08A58.5060000@denx.de> you wrote:
> Signed-off-by: Heiko Schocher <hs@denx.de>
> ---
> drivers/i2c/soft_i2c.c | 24 ++++++++++++------------
> 1 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c
> index f426bbb..bda0aaf 100644
> --- a/drivers/i2c/soft_i2c.c
> +++ b/drivers/i2c/soft_i2c.c
> @@ -93,10 +93,10 @@ static uchar read_byte (int);
> */
> static void send_reset(void)
> {
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
Why are you changing this? There is no reason to do that.
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
This is NOT a CodingStyle issue.
Please do not try to sneak in such changes under another subject.
Also, please avoid board specific code in global files.
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
> volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
> #endif
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
>
> @@ -147,10 +147,10 @@ static void send_start(void)
> */
> static void send_stop(void)
> {
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
> volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
> #endif
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
>
> @@ -172,10 +172,10 @@ static void send_stop(void)
> */
> static void send_ack(int ack)
> {
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
> volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
> #endif
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
>
> @@ -197,10 +197,10 @@ static void send_ack(int ack)
> */
> static int write_byte(uchar data)
> {
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
> volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
> #endif
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
> int j;
> @@ -290,10 +290,10 @@ int i2c_set_bus_speed(unsigned int speed)
> */
> static uchar read_byte(int ack)
> {
> -#ifdef CONFIG_MPC8260
> +#if defined(CONFIG_MPC8260)
> volatile ioport_t *iop = ioport_addr((immap_t *)CFG_IMMR, I2C_PORT);
> #endif
> -#ifdef CONFIG_8xx
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
> int data;
> --
NAK.
I will not accept this patch.
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
The years of peak mental activity are undoubtedly between the ages of
four and eighteen. At four we know all the questions, at eighteen all
the answers.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c
2008-09-29 7:57 [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c Heiko Schocher
2008-09-29 9:12 ` Wolfgang Denk
@ 2008-10-14 16:25 ` Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2008-10-14 16:25 UTC (permalink / raw)
To: u-boot
Dear Heiko,
In message <48E08A58.5060000@denx.de> you wrote:
> Signed-off-by: Heiko Schocher <hs@denx.de>
> ---
> drivers/i2c/soft_i2c.c | 24 ++++++++++++------------
...
> +#if defined(CONFIG_8xx) && !defined(CONFIG_MGSUVD)
> volatile immap_t *immr = (immap_t *)CFG_IMMR;
> #endif
I cannot find any feedback from you fro my comment about this
non-coding style change. We don't want to add such board specific
code in global files.
Can you please update and resubmit this patch? 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
Es gibt immer genug fuer die Beduerfnisse aller, aber niemals genug
fuer die Gier einzelner. -- Ghandi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-10-14 16:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-29 7:57 [U-Boot] [PATCH] I2C: Fix CodingStyle issues in soft_i2c.c Heiko Schocher
2008-09-29 9:12 ` Wolfgang Denk
2008-10-14 16:25 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox