public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
       [not found] <b85c662e32e00fa58aa19c2e2b96450976c6023a.1412266972.git.marcel@ziswiler.com>
@ 2014-10-02 16:23 ` Marcel Ziswiler
  2014-10-03  7:03   ` Marcel Ziswiler
  2014-10-28  1:13   ` Marcel Ziswiler
  0 siblings, 2 replies; 8+ messages in thread
From: Marcel Ziswiler @ 2014-10-02 16:23 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
---
 arch/arm/dts/tegra30-colibri.dts | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/arch/arm/dts/tegra30-colibri.dts b/arch/arm/dts/tegra30-colibri.dts
index 43d03ca..8ede0c0 100644
--- a/arch/arm/dts/tegra30-colibri.dts
+++ b/arch/arm/dts/tegra30-colibri.dts
@@ -22,8 +22,10 @@
 		reg = <0x80000000 0x40000000>;
 	};
 
-	/* GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
-	   board) */
+	/*
+	 * GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
+	 * board)
+	 */
 	i2c at 7000c000 {
 		status = "okay";
 		clock-frequency = <100000>;
@@ -39,8 +41,10 @@
 		clock-frequency = <100000>;
 	};
 
-	/* PWR_I2C: power I2C to audio codec, PMIC, temperature sensor and
-	   touch screen controller */
+	/*
+	 * PWR_I2C: power I2C to audio codec, PMIC, temperature sensor and
+	 * touch screen controller
+	 */
 	i2c at 7000d000 {
 		status = "okay";
 		clock-frequency = <100000>;
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-02 16:23 ` Marcel Ziswiler
@ 2014-10-03  7:03   ` Marcel Ziswiler
  2014-10-03 15:40     ` Stephen Warren
  2014-10-28  1:13   ` Marcel Ziswiler
  1 sibling, 1 reply; 8+ messages in thread
From: Marcel Ziswiler @ 2014-10-03  7:03 UTC (permalink / raw)
  To: u-boot

On Thu, 2014-10-02 at 18:23 +0200, Marcel Ziswiler wrote:

Sorry about the 42/42 thingy but my tree is still holding Thierry's (now
on CC) latest PCIe patch set (BTW: what's the status there?) and I
forgot to fix that up prior to sending it out.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-03  7:03   ` Marcel Ziswiler
@ 2014-10-03 15:40     ` Stephen Warren
  2014-10-03 15:55       ` Marcel Ziswiler
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Warren @ 2014-10-03 15:40 UTC (permalink / raw)
  To: u-boot

On 10/03/2014 01:03 AM, Marcel Ziswiler wrote:
> On Thu, 2014-10-02 at 18:23 +0200, Marcel Ziswiler wrote:
>
> Sorry about the 42/42 thingy but my tree is still holding Thierry's (now
> on CC) latest PCIe patch set (BTW: what's the status there?) and I
> forgot to fix that up prior to sending it out.

If you want to extract just 1 (or some specific number) of commits 
rather than "everything since upstream", you can always run:

git format-patch -1 commit_id

where -1 means "1 commit" (and could be any number) and commit_id is the 
most recent commit you want to send. That way, format-patch will 
generate the correct N/M values in the email subjects without you having 
to fix them up:-)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-03 15:40     ` Stephen Warren
@ 2014-10-03 15:55       ` Marcel Ziswiler
  2014-10-03 15:56         ` Stephen Warren
  0 siblings, 1 reply; 8+ messages in thread
From: Marcel Ziswiler @ 2014-10-03 15:55 UTC (permalink / raw)
  To: u-boot

On Fri, 2014-10-03 at 09:40 -0600, Stephen Warren wrote:
> If you want to extract just 1 (or some specific number) of commits 
> rather than "everything since upstream", you can always run:
> 
> git format-patch -1 commit_id
> 
> where -1 means "1 commit" (and could be any number) and commit_id is the 
> most recent commit you want to send. That way, format-patch will 
> generate the correct N/M values in the email subjects without you having 
> to fix them up:-)

Thanks mate, I knew there's gotta be a better way to doing this, just
never got around to actually fiddle with it.

Do you happen to know about the status of Thierry's latest PCIe patch
set?

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-03 15:55       ` Marcel Ziswiler
@ 2014-10-03 15:56         ` Stephen Warren
  0 siblings, 0 replies; 8+ messages in thread
From: Stephen Warren @ 2014-10-03 15:56 UTC (permalink / raw)
  To: u-boot

On 10/03/2014 09:55 AM, Marcel Ziswiler wrote:
> On Fri, 2014-10-03 at 09:40 -0600, Stephen Warren wrote:
>> If you want to extract just 1 (or some specific number) of commits
>> rather than "everything since upstream", you can always run:
>>
>> git format-patch -1 commit_id
>>
>> where -1 means "1 commit" (and could be any number) and commit_id is the
>> most recent commit you want to send. That way, format-patch will
>> generate the correct N/M values in the email subjects without you having
>> to fix them up:-)
>
> Thanks mate, I knew there's gotta be a better way to doing this, just
> never got around to actually fiddle with it.
>
> Do you happen to know about the status of Thierry's latest PCIe patch
> set?

I think Tom was going to track down who was going to apply it.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
@ 2014-10-03 17:41 Tom Warren
  2014-10-06 12:45 ` Thierry Reding
  0 siblings, 1 reply; 8+ messages in thread
From: Tom Warren @ 2014-10-03 17:41 UTC (permalink / raw)
  To: u-boot

> -----Original Message-----

> From: Stephen Warren [mailto:swarren at wwwdotorg.org <swarren@wwwdotorg.org>
]

> Sent: Friday, October 03, 2014 8:56 AM

> To: Marcel Ziswiler

> Cc: u-boot at lists.denx.de; Thierry Reding; Stephen Warren; Tom Warren

> Subject: Re: [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment

> style fix

>

> On 10/03/2014 09:55 AM, Marcel Ziswiler wrote:

> > On Fri, 2014-10-03 at 09:40 -0600, Stephen Warren wrote:

> >> If you want to extract just 1 (or some specific number) of commits

> >> rather than "everything since upstream", you can always run:

> >>

> >> git format-patch -1 commit_id

> >>

> >> where -1 means "1 commit" (and could be any number) and commit_id

> >> is the most recent commit you want to send. That way, format-patch

> >> will generate the correct N/M values in the email subjects without

> >> you having to fix them up:-)

> >

> > Thanks mate, I knew there's gotta be a better way to doing this,

> > just never got around to actually fiddle with it.

> >

> > Do you happen to know about the status of Thierry's latest PCIe

> > patch set?

>

> I think Tom was going to track down who was going to apply it.

[blocked from my work email due to Mime, resend from gmail account]

I thought I saw some discussion of Tom (Rini), etc. taking it in, as only
about a quarter (9 of 40) of the v2 patches are tagged 'tegra'.  But I can
try to apply it to u-boot-tegra early next week if no one else wants to
take it.

Tom

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-03 17:41 [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix Tom Warren
@ 2014-10-06 12:45 ` Thierry Reding
  0 siblings, 0 replies; 8+ messages in thread
From: Thierry Reding @ 2014-10-06 12:45 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 03, 2014 at 10:41:09AM -0700, Tom Warren wrote:
> > -----Original Message-----
> 
> > From: Stephen Warren [mailto:swarren at wwwdotorg.org <swarren@wwwdotorg.org>
> ]
> 
> > Sent: Friday, October 03, 2014 8:56 AM
> 
> > To: Marcel Ziswiler
> 
> > Cc: u-boot at lists.denx.de; Thierry Reding; Stephen Warren; Tom Warren
> 
> > Subject: Re: [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment
> 
> > style fix
> 
> >
> 
> > On 10/03/2014 09:55 AM, Marcel Ziswiler wrote:
> 
> > > On Fri, 2014-10-03 at 09:40 -0600, Stephen Warren wrote:
> 
> > >> If you want to extract just 1 (or some specific number) of commits
> 
> > >> rather than "everything since upstream", you can always run:
> 
> > >>
> 
> > >> git format-patch -1 commit_id
> 
> > >>
> 
> > >> where -1 means "1 commit" (and could be any number) and commit_id
> 
> > >> is the most recent commit you want to send. That way, format-patch
> 
> > >> will generate the correct N/M values in the email subjects without
> 
> > >> you having to fix them up:-)
> 
> > >
> 
> > > Thanks mate, I knew there's gotta be a better way to doing this,
> 
> > > just never got around to actually fiddle with it.
> 
> > >
> 
> > > Do you happen to know about the status of Thierry's latest PCIe
> 
> > > patch set?
> 
> >
> 
> > I think Tom was going to track down who was going to apply it.
> 
> [blocked from my work email due to Mime, resend from gmail account]
> 
> I thought I saw some discussion of Tom (Rini), etc. taking it in, as only
> about a quarter (9 of 40) of the v2 patches are tagged 'tegra'.  But I can
> try to apply it to u-boot-tegra early next week if no one else wants to
> take it.

It isn't finalized yet. Simon requested that I make some changes. Some
of them turned out to be too complicated to do as part of the series
(the I2C rewrite/DM conversion), so I'll need to respin part of it to
use the old I2C API and move the AS3722 code to the PMIC "framework".

However given my current workload I'd expect it to take at least another
two to three weeks before I have the time to get back to it.

Thierry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141006/abf1cf5e/attachment.pgp>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix
  2014-10-02 16:23 ` Marcel Ziswiler
  2014-10-03  7:03   ` Marcel Ziswiler
@ 2014-10-28  1:13   ` Marcel Ziswiler
  1 sibling, 0 replies; 8+ messages in thread
From: Marcel Ziswiler @ 2014-10-28  1:13 UTC (permalink / raw)
  To: u-boot

Sorry, Tom. Found another one that hasn't quite made it in yet (;-p).

On Thu, 2014-10-02 at 18:23 +0200, Marcel Ziswiler wrote:
> Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
> ---
>  arch/arm/dts/tegra30-colibri.dts | 12 ++++++++----
>  1 file changed, 8 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/dts/tegra30-colibri.dts b/arch/arm/dts/tegra30-colibri.dts
> index 43d03ca..8ede0c0 100644
> --- a/arch/arm/dts/tegra30-colibri.dts
> +++ b/arch/arm/dts/tegra30-colibri.dts
> @@ -22,8 +22,10 @@
>  		reg = <0x80000000 0x40000000>;
>  	};
>  
> -	/* GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
> -	   board) */
> +	/*
> +	 * GEN1_I2C: I2C_SDA/SCL on SODIMM pin 194/196 (e.g. RTC on carrier
> +	 * board)
> +	 */
>  	i2c at 7000c000 {
>  		status = "okay";
>  		clock-frequency = <100000>;
> @@ -39,8 +41,10 @@
>  		clock-frequency = <100000>;
>  	};
>  
> -	/* PWR_I2C: power I2C to audio codec, PMIC, temperature sensor and
> -	   touch screen controller */
> +	/*
> +	 * PWR_I2C: power I2C to audio codec, PMIC, temperature sensor and
> +	 * touch screen controller
> +	 */
>  	i2c at 7000d000 {
>  		status = "okay";
>  		clock-frequency = <100000>;

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-10-28  1:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-03 17:41 [U-Boot] [PATCH 42/42] ARM: tegra: colibri_t30: comment style fix Tom Warren
2014-10-06 12:45 ` Thierry Reding
     [not found] <b85c662e32e00fa58aa19c2e2b96450976c6023a.1412266972.git.marcel@ziswiler.com>
2014-10-02 16:23 ` Marcel Ziswiler
2014-10-03  7:03   ` Marcel Ziswiler
2014-10-03 15:40     ` Stephen Warren
2014-10-03 15:55       ` Marcel Ziswiler
2014-10-03 15:56         ` Stephen Warren
2014-10-28  1:13   ` Marcel Ziswiler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox