Re: [U-Boot] [PATCH v3] i2c: at91_i2c: Fix the wrong include file

2016-10-16 Thread Wenyou.Yang


> -Original Message-
> From: Heiko Schocher [mailto:h...@denx.de]
> Sent: 2016年10月17日 13:46
> To: Wenyou Yang - A41535 
> Cc: U-Boot Mailing List ; Wenyou Yang - A41535
> ; Simon Glass ; Andreas
> Bießmann ; Songjun Wu - A41519
> 
> Subject: Re: [PATCH v3] i2c: at91_i2c: Fix the wrong include file
> 
> Hello Wenyou Yang,
> 
> Am 17.10.2016 um 03:46 schrieb Wenyou Yang:
> > Since the 'clk_client.h' doesn't exist, it should be 'clk.h'.
> >
> > Signed-off-by: Wenyou Yang 
> > Reviewed-by: Simon Glass 
> > Reviewed-by: Andreas Bießmann 
> > ---
> >
> > Changes in v3:
> >   - Collect Reviewed-by tag.
> >
> > Changes in v2:
> >   - Collect Reviewed-by tag.
> >
> >   drivers/i2c/at91_i2c.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Hups, I just want to apply this patch to u-boot-i2c.git ... but, this patch 
> is already
> applied in mainline:

Sorry, 

I forgot to check the mainline, I checked the master branch on 
git://git.denx.de/u-boot-atmel.git

> 
> commit 76062b9cdbe756eff75b99beaf6e94e8bb059431
> Author: Wenyou Yang 
> Date:   Tue Sep 13 10:40:31 2016 +0800
> 
>  i2c: at91_i2c: Fix the wrong include file
> 
> So, I only set your v3 version into state "Not applicable"
> 
> bye,
> Heiko
> >
> > diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c index
> > 8e9c3ad..d71f75c 100644
> > --- a/drivers/i2c/at91_i2c.c
> > +++ b/drivers/i2c/at91_i2c.c
> > @@ -8,7 +8,7 @@
> >
> >   #include 
> >   #include 
> > -#include 
> > +#include 
> >   #include 
> >   #include 
> >   #include 
> >
> 
> --
> DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany


Best Regards,
Wenyou Yang
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3] i2c: at91_i2c: Fix the wrong include file

2016-10-16 Thread Heiko Schocher

Hello Wenyou Yang,

Am 17.10.2016 um 03:46 schrieb Wenyou Yang:

Since the 'clk_client.h' doesn't exist, it should be 'clk.h'.

Signed-off-by: Wenyou Yang 
Reviewed-by: Simon Glass 
Reviewed-by: Andreas Bießmann 
---

Changes in v3:
  - Collect Reviewed-by tag.

Changes in v2:
  - Collect Reviewed-by tag.

  drivers/i2c/at91_i2c.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)


Hups, I just want to apply this patch to u-boot-i2c.git ... but,
this patch is already applied in mainline:

commit 76062b9cdbe756eff75b99beaf6e94e8bb059431
Author: Wenyou Yang 
Date:   Tue Sep 13 10:40:31 2016 +0800

i2c: at91_i2c: Fix the wrong include file

So, I only set your v3 version into state "Not applicable"

bye,
Heiko


diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c
index 8e9c3ad..d71f75c 100644
--- a/drivers/i2c/at91_i2c.c
+++ b/drivers/i2c/at91_i2c.c
@@ -8,7 +8,7 @@

  #include 
  #include 
-#include 
+#include 
  #include 
  #include 
  #include 



--
DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3] i2c: at91_i2c: Fix the wrong include file

2016-10-16 Thread Heiko Schocher

Hello Wenyou Yang,

Am 17.10.2016 um 03:46 schrieb Wenyou Yang:

Since the 'clk_client.h' doesn't exist, it should be 'clk.h'.

Signed-off-by: Wenyou Yang 
Reviewed-by: Simon Glass 
Reviewed-by: Andreas Bießmann 
---

Changes in v3:
  - Collect Reviewed-by tag.

Changes in v2:
  - Collect Reviewed-by tag.

  drivers/i2c/at91_i2c.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c
index 8e9c3ad..d71f75c 100644
--- a/drivers/i2c/at91_i2c.c
+++ b/drivers/i2c/at91_i2c.c
@@ -8,7 +8,7 @@

  #include 
  #include 
-#include 
+#include 
  #include 
  #include 
  #include 



Reviewed-by: Heiko Schocher 

bye,
Heiko
--
DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v3] i2c: at91_i2c: Fix the wrong include file

2016-10-16 Thread Wenyou Yang
Since the 'clk_client.h' doesn't exist, it should be 'clk.h'.

Signed-off-by: Wenyou Yang 
Reviewed-by: Simon Glass 
Reviewed-by: Andreas Bießmann 
---

Changes in v3:
 - Collect Reviewed-by tag.

Changes in v2:
 - Collect Reviewed-by tag.

 drivers/i2c/at91_i2c.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c
index 8e9c3ad..d71f75c 100644
--- a/drivers/i2c/at91_i2c.c
+++ b/drivers/i2c/at91_i2c.c
@@ -8,7 +8,7 @@
 
 #include 
 #include 
-#include 
+#include 
 #include 
 #include 
 #include 
-- 
2.7.4

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot