Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-12 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4e6e5e37.9040...@aribaud.net> you wrote: > > As a rule, I'd rather not alter the commits I did not author, but if > Wolfgang agrees, then I could indeed squash both LED commits together. > > Wolfgang? Given the current state of affairs this seems to be the best.

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-12 Thread Mike Frysinger
On Monday, September 12, 2011 15:32:07 Albert ARIBAUD wrote: > Le 12/09/2011 18:27, Mike Frysinger a écrit : > > On Monday, September 12, 2011 01:31:45 Albert ARIBAUD wrote: > >> Le 12/09/2011 06:04, Mike Frysinger a écrit : > >>> On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: > T

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-12 Thread Albert ARIBAUD
Le 12/09/2011 18:27, Mike Frysinger a écrit : > On Monday, September 12, 2011 01:31:45 Albert ARIBAUD wrote: >> Le 12/09/2011 06:04, Mike Frysinger a écrit : >>> On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: This was done with the following command-line: for file in `fi

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-12 Thread Mike Frysinger
On Monday, September 12, 2011 01:31:45 Albert ARIBAUD wrote: > Le 12/09/2011 06:04, Mike Frysinger a écrit : > > On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: > >> This was done with the following command-line: > >> > >> for file in `find . | grep '\.[chS]$'`; > >> > >> do perl -i

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-12 Thread Albert ARIBAUD
Le 12/09/2011 07:31, Albert ARIBAUD a écrit : > Hi Mike, > > Le 12/09/2011 06:04, Mike Frysinger a écrit : >> On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: >>> This was done with the following command-line: >>> >>> for file in `find . | grep '\.[chS]$'`; >>>do perl -i -pe 's/(gree

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Albert ARIBAUD
Hi Mike, Le 12/09/2011 06:04, Mike Frysinger a écrit : > On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: >> This was done with the following command-line: >> >> for file in `find . | grep '\.[chS]$'`; >> do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; >> do

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Mike Frysinger
On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: > This was done with the following command-line: > > for file in `find . | grep '\.[chS]$'`; > do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; > done one line: find . -name '*.[chS]' -exec \ sed -ri 's