[PATCH] OMAP: MMU_FWK: Changed Kconfig entry from tristate to bool.

2008-03-26 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> As this code uses unexported symbols, it must be always built-in. For this reason, a better type of its Kconfig entry is bool. Fixed also defconfig which sets this entry as module. Compile test only. Signed-off-by: Eduardo Valentin <[EMAIL

Re: [PATCH] OMAP: MMC: Add several missing line breaks

2008-03-26 Thread Eduardo Valentin
Hi Balbi, Here is a refreshed version of your patch. Cheers, Eduardo Valentin -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] OMAP: MMC: Add several missing line breaks.

2008-03-26 Thread Eduardo Valentin
From: Felipe Balbi <[EMAIL PROTECTED]> Misc clean up in omap_hsmmc.c to beautify debugging output. Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- drivers/mmc/host/omap_hsmmc.c | 14 +++--- 1 files changed,

Re: [PATCH] OMAP: MMC: Add several missing line breaks.

2008-03-26 Thread Eduardo Valentin
Hi Balbi, On Wed, Mar 26, 2008 at 1:39 PM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > On Wed, Mar 26, 2008 at 11:33:45AM -0400, Eduardo Valentin wrote: > > From: Felipe Balbi <[EMAIL PROTECTED]> > > > > Misc clean up in omap_hsmmc.c to beautify debugging output

[PATCH] Keymap fix for palmte and palmz71.

2008-03-27 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/board-palmte.c |2 +- arch/arm/mach-omap1/board-palmz71.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap1/board

[PATCH] i2c: tea5761: New-style i2c driver

2008-03-27 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch updates the fm radio driver for tea5761 chip. It also moves board dependent code to its correct board file place. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/board-n800.c| 34 + d

Re: [PATCH] Keymap fix for palmte and palmz71.

2008-03-27 Thread Eduardo Valentin
]> wrote: > Hi, > > > On 27/03/2008, Eduardo Valentin <[EMAIL PROTECTED]> wrote: > > From: Eduardo Valentin <[EMAIL PROTECTED]> > > > > Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> > > --- > > arch/arm/mach-omap1/boar

Re: [PATCH] i2c: tea5761: New-style i2c driver

2008-03-28 Thread Eduardo Valentin
Hi Jarkko, Thanks for the review. >On Thu, 27 Mar 2008 11:31:20 -0400 >"ext Eduardo Valentin" <[EMAIL PROTECTED]> wrote: > >> From: Eduardo Valentin <[EMAIL PROTECTED]> >> >> This patch updates the fm radio driver for tea5761 chip. >>

[PATCH] i2c: tea5761: New-style i2c driver

2008-03-28 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch updates the fm radio driver for tea5761 chip. It also moves board dependent code to its correct board file place. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/board-n800.c| 33 d

Re: [PATCH 9/17] ARM: OMAP2: Add common clock framework for 24xx and 34xx

2008-03-30 Thread Eduardo Valentin
operation. Or this code is not designed for CONFIG_PREEMPT? Cheers, Eduardo Valentin On Fri, Mar 28, 2008 at 8:38 AM, Tony Lindgren <[EMAIL PROTECTED]> wrote: > * Tony Lindgren <[EMAIL PROTECTED]> [080318 17:04]: > > > From: Paul Walmsley <[EMAIL PROTECTED]> > > >

Re: [PATCH 2/5] I2C: TSL2563: Add support for Taos tsl2563 ambient light sensor

2008-04-09 Thread Eduardo Valentin
Hi Balbi and Mathias, This patch has some style problems. Here is the output of checkpatch: [EMAIL PROTECTED]:~$ ./trees/linux-omap-2.6/scripts/checkpatch.pl mathias.diff ERROR: do not use assignment in if condition #314: FILE: drivers/i2c/chips/tsl2563.c:188: + if ((ret = tsl2563_write(clie

Re: [PATCH 1/5] I2C: LM8323: Introduce lm8323 keypad driver

2008-04-09 Thread Eduardo Valentin
Hi Balbi and Daniel, This code has some style problems as well. A simple execution of checkpatch will produce: ERROR: do not initialise statics to 0 or NULL #417: FILE: drivers/input/keyboard/lm8323.c:197: +static struct lm8323_platform_data *lm8323_pdata = NULL; WARNING: braces {} are not necess

Re: [PATCH 3/5] INPUT: TOUCHSCREEN: Introduce tsc2005 driver

2008-04-09 Thread Eduardo Valentin
Hi Balbi and Lauri, Again, a few style problems from checkpatch. ERROR: spaces required around that '=' (ctx:VxW) #131: FILE: arch/arm/mach-omap2/board-n800.c:418: + .controller_data= &mipid_mcspi_config, ^ ERROR: spaces required around that '=' (ctx:

Re: [PATCH 4/5] I2C: LP5521: Introduce lp5521 LED driver

2008-04-09 Thread Eduardo Valentin
Hi Mathias and Balbi, A few comments from checkpatch for this code: ERROR: space required after that ',' (ctx:VxV) #397: FILE: drivers/i2c/chips/lp5521.c:277: + unsigned r,g,b; ^ ERROR: space required after that ',' (ctx:VxV) #397: FILE: drivers/i2c/chips/lp5521.c:277: +

Re: [PATCH 1/5] I2C: LM8323: Introduce lm8323 keypad driver

2008-04-09 Thread Eduardo Valentin
Hi Daniel, On Wed, Apr 9, 2008 at 2:02 PM, Daniel Stone <[EMAIL PROTECTED]> wrote: > Hi, > > > On Wed, Apr 09, 2008 at 01:54:16PM +0300, ext Eduardo Valentin wrote: > > ERROR: do not initialise statics to 0 or NULL > > > WARNING: braces {} are not necessary for

[PATCH 0/2] Code update for mcbsp driver

2008-04-14 Thread Eduardo Valentin
From: Eduardo <[EMAIL PROTECTED]> Hi all, This patch series updates the mcbsp driver. It cleans up several coding style errors and also moves code to mach- specific place. Comments are wellcome. Cheers, Eduardo Valentin (2): PLAT-OMAP: McBSP: Coding style cleanup on arch/arm/pla

[PATCH 2/2] PLAT-OMAP: MCBSP: Move code mach specific from plat-omap to mach-omap

2008-04-14 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch gets ride of ifdefs on mcbsp.c code. It moves the mach specific code to mach-omap*. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap2/Makefile |2 + a

[PATCH 1/2] PLAT-OMAP: McBSP: Coding style cleanup on arch/arm/plat-omap/mcbsp.c

2008-04-14 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix lots of warnings and errors reported by scripts/checkpatch.pl on arch/arm/plat-omap/mcbsp.c. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/plat-omap/mcbsp.c | 197 +++--

[PATCH 2/2] PLAT-OMAP: MCBSP: Move code mach specific from plat-omap to mach-omap

2008-04-14 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch gets ride of ifdefs on mcbsp.c code. It moves the mach specific code to mach-omap*. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap1/mcbsp.c

[PATCH 1/2] PLAT-OMAP: McBSP: Coding style cleanup on arch/arm/plat-omap/mcbsp.c

2008-04-14 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix lots of warnings and errors reported by scripts/checkpatch.pl on arch/arm/plat-omap/mcbsp.c. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/plat-omap/mcbsp.c | 198 +++--

Re: [PATCH 1/2] PLAT-OMAP: McBSP: Coding style cleanup on arch/arm/plat-omap/mcbsp.c

2008-04-14 Thread Eduardo Valentin
On Mon, Apr 14, 2008 at 2:16 PM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 11:53:00AM -0400, Eduardo Valentin wrote: > > From: Eduardo Valentin <[EMAIL PROTECTED]> > > > > This patch fix lots of warnings and errors reported by > >

Re: [PATCH 2/2] PLAT-OMAP: MCBSP: Move code mach specific from plat-omap to mach-omap

2008-04-14 Thread Eduardo Valentin
Hi Balbi On Mon, Apr 14, 2008 at 2:18 PM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > On Mon, Apr 14, 2008 at 11:53:01AM -0400, Eduardo Valentin wrote: > > From: Eduardo Valentin <[EMAIL PROTECTED]> > > > > This patch gets ride of ifdefs on mcbsp.c code. >

Re: [PATCH 2/2] PLAT-OMAP: MCBSP: Move code mach specific from plat-omap to mach-omap

2008-04-15 Thread Eduardo Valentin
Hi Jarkko On Tue, Apr 15, 2008 at 12:38 PM, Jarkko Nikula <[EMAIL PROTECTED]> wrote: > On Mon, 14 Apr 2008 23:23:39 +0300 > "ext Felipe Balbi" <[EMAIL PROTECTED]> wrote: > > > On Mon, Apr 14, 2008 at 04:11:31PM -0400, Eduardo Valentin wrote: > >

[PATCH 03/19] Code clean-up for sound/arm/omap/omap-alsa-aic23.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23.c | 59 -- sound/arm/omap/oma

[PATCH 00/19] Update and clean up on sound/arm/omap/omap-alsa*[c,h]

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi all, This patch series cleans up most of the errors and warnings reported by checkpatch.pl on sound/arm/omap/omap-alsa*[c,h]. Some checks reported by checkpatch.pl were ignored, such as removing #if 0 codes. Not all were eligible for remotion.

[PATCH 08/19] Code clean-up for sound/arm/omap/omap-alsa-sx1-mixer.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1-mixer.c | 22 +++--- 1 files changed, 11 inser

[PATCH 09/19] Code clean-up for sound/arm/omap/omap-alsa-sx1-mixer.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1-mixer.h |6 -- 1 files changed, 4 insertions(+), 2 deleti

[PATCH 07/19] Code clean-up for sound/arm/omap/omap-alsa-dma.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-dma.h | 22 +++--- 1 files changed, 11 insertions(+),

[PATCH 05/19] Code clean-up for sound/arm/omap/omap-alsa-aic23-mixer.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23-mixer.c | 138 ++- sound/arm/omap/omap-

[PATCH 04/19] Code clean-up for sound/arm/omap/omap-alsa-aic23.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-)

[PATCH 11/19] Code clean-up for sound/arm/omap/omap-alsa-sx1.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff -

[PATCH 06/19] Code clean-up for sound/arm/omap/omap-alsa-dma.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-dma.c | 171 +++ 1 files changed, 8

[PATCH 02/19] Code clean-up for sound/arm/omap/omap-alsa.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- include/asm-arm/arch-omap/omap-alsa.h | 14 +++--- 1 files changed, 11 insertions(+),

[PATCH 17/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102.c | 70 ++-- 1 files changed, 3

[PATCH 14/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101.c | 296 +++- 1 files changed, 19

[PATCH 13/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101-mixer.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101-mixer.h | 29 ++--- 1 files changed, 1

[PATCH 10/19] Code clean-up for sound/arm/omap/omap-alsa-sx1.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1.c | 72 +++ 1 files changed, 5

[PATCH 12/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101-mixer.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101-mixer.c | 624 -- 1 files changed, 34

[PATCH 18/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[PATCH 16/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102-mixer.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102-mixer.c | 14 -- 1 files changed, 8 insertions(+),

[PATCH 15/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101.h

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)

[PATCH 19/19] Code clean-up for sound/arm/omap/omap-alsa.c

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa.c | 163 +++- 1 files changed, 8

[PATCH 01/19] Update audio driver for H2 board

2008-04-15 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch updates the audio driver based on tsc2101 chip for H2 board. tsc2101 driver was updated against new spi framework, but its audio driver for H2 wasn't. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach

[PATCH 07/19] Code clean-up for sound/arm/omap/omap-alsa-dma.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-dma.h | 22 +++--- 1 files changed, 11 insertions(+),

[PATCH 04/19] Code clean-up for sound/arm/omap/omap-alsa-aic23.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-)

[PATCH 00/19] Update and clean up on sound/arm/omap/omap-alsa*[c,h] (take #2)

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi all, This patch series cleans up most of the errors and warnings reported by checkpatch.pl on sound/arm/omap/omap-alsa*[c,h]. Some checks reported by checkpatch.pl were ignored, such as removing #if 0 codes. Not all were eligible for remotion.

[PATCH 01/19] Update audio driver for H2 board

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch updates the audio driver based on tsc2101 chip for H2 board. tsc2101 driver was updated against new spi framework, but its audio driver for H2 wasn't. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach

[PATCH 02/19] Code clean-up for include/asm-arm/arch-omap/omap-alsa.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- include/asm-arm/arch-omap/omap-alsa.h | 29 +++-- 1 files changed, 1

[PATCH 13/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101-mixer.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101-mixer.h | 29 ++--- 1 files changed, 1

[PATCH 03/19] Code clean-up for sound/arm/omap/omap-alsa-aic23.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23.c | 59 -- sound/arm/omap/oma

[PATCH 06/19] Code clean-up for sound/arm/omap/omap-alsa-dma.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-dma.c | 171 +++ 1 files changed, 8

[PATCH 15/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)

[PATCH 18/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[PATCH 08/19] Code clean-up for sound/arm/omap/omap-alsa-sx1-mixer.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1-mixer.c | 22 +++--- 1 files changed, 11 inser

[PATCH 16/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102-mixer.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102-mixer.c | 14 -- 1 files changed, 8 insertions(+),

[PATCH 17/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2102.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2102.c | 70 ++-- 1 files changed, 3

[PATCH 14/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101.c | 292 +++- 1 files changed, 19

[PATCH 19/19] Code clean-up for sound/arm/omap/omap-alsa.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa.c | 163 +++- 1 files changed, 8

[PATCH 10/19] Code clean-up for sound/arm/omap/omap-alsa-sx1.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1.c | 72 +++ 1 files changed, 5

[PATCH 11/19] Code clean-up for sound/arm/omap/omap-alsa-sx1.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff -

[PATCH 05/19] Code clean-up for sound/arm/omap/omap-alsa-aic23-mixer.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-aic23-mixer.c | 144 ++- sound/arm/omap/omap-

[PATCH 12/19] Code clean-up for sound/arm/omap/omap-alsa-tsc2101-mixer.c

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-tsc2101-mixer.c | 624 -- 1 files changed, 34

[PATCH 09/19] Code clean-up for sound/arm/omap/omap-alsa-sx1-mixer.h

2008-04-18 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Removed lots of whitespaces and a few errors and warnings reported by checkpatch.pl. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- sound/arm/omap/omap-alsa-sx1-mixer.h |6 -- 1 files changed, 4 insertions(+), 2 deleti

Re: [PATCH 2/2] PLAT-OMAP: MCBSP: Move code mach specific from plat-omap to mach-omap

2008-04-21 Thread Eduardo Valentin
Cheers, On Mon, Apr 21, 2008 at 9:33 PM, Tony Lindgren <[EMAIL PROTECTED]> wrote: > Hi, > > Some comments below. > > * Eduardo Valentin <[EMAIL PROTECTED]> [080414 13:13]: > > > > From: Eduardo Valentin <[EMAIL PROTECTED]> > > > > This pa

[PATCH 4/5] OMAP3xx: Add DMA and IRQ definition for McBSP 1 and 2

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds DMA and IRQ definition for McBSP 1 and 2 devices for omap34xx based systems. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- include/asm-arm/arch-omap/dma.h |4 include/asm-arm/arch-omap/irqs.h |4 +

[PATCH 2/5] MACH-OMAP1: MCBSP: Add support for mcbsp on mach-omap1

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap1 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap1/mcb

[PATCH 0/5] Updates on mcbsp driver

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch series updates mcbsp driver by transforming it into a platform driver. This is a very initial implementation. Basically it moves machine specific code to their correct place and creates the platform driver necessary structures. It m

[PATCH 3/5] Fix mcbsp clock definition on clock34xx.h

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix the clock definition for mcbsps on clock34xx.h. Device identification must be done using .id field, not only name field. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/clock3

[PATCH 5/5] MACH-OMAP2: MCBSP: Add support for mcbsp on mach-omap2

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap2 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/Makefile |2 + arch/arm/mach-omap2/mcb

[PATCH 1/5] PLAT-OMAP: MCBSP: Tranform into platform driver

2008-04-24 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch transform mcbsp code into a very initial implementation of a platform driver. It also gets ride of ifdefs on mcbsp.c code. To do it, a platform data structure was defined. Platform devices are located in arch/arm/plat-omap/devices.c

Re: [PATCH 4/5] OMAP3xx: Add DMA and IRQ definition for McBSP 1 and 2

2008-04-24 Thread Eduardo Valentin
Hi Anand, On Fri, Apr 25, 2008 at 1:11 AM, Gadiyar, Anand <[EMAIL PROTECTED]> wrote: > > > > diff --git a/include/asm-arm/arch-omap/dma.h > > b/include/asm-arm/arch-omap/dma.h > > index be0431e..270e158 100644 > > --- a/include/asm-arm/arch-omap/dma.h > > +++ b/include/asm-arm/arch-omap/dma.h

Re: [PATCH 0/5] Updates on mcbsp driver

2008-04-24 Thread Eduardo Valentin
Hi Tony and Igor, > > > > > > checkpatch doesn't complain, although i didn't really test it. > > > > However I'd prefer see this patchset being merged with > > > > [RFC/PATCH 1/1] McBSP support for 2430/34XX > > > > and only later considered for integration. > > Yeah, Chandra and Eduard

Re: [PATCH] ARM: OMAP: 2430SDP: Use defines in asm/sizes.h

2008-04-30 Thread Eduardo Valentin
On Wed, Apr 30, 2008 at 11:43 AM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > Instead of manually calculating the partition sizes, it's > better to use defines already set in include/asm-arm/sizes.h > > Compile test only. > > Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> > --- > arch/arm/mach

Re: [PATCH] ARM: OMAP: 2430SDP: Use defines in asm/sizes.h

2008-04-30 Thread Eduardo Valentin
On Wed, Apr 30, 2008 at 12:07 PM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > Instead of manually calculating the partition sizes, it's > better to use defines already set in include/asm-arm/sizes.h > > Compile test only. > > Signed-off-by: Felipe Balbi <[EMAI

[PATCH 4/4] MACH-OMAP2: MCBSP: Add support for mcbsp on mach-omap2

2008-05-05 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap2 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/Makefile |2 + arch/arm/mach-omap2/mcb

[PATCH 2/4] MACH-OMAP1: MCBSP: Add support for mcbsp on mach-omap1

2008-05-05 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap1 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap1/mcb

[PATCH 3/4] Fix mcbsp clock definition on clock34xx.h

2008-05-05 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix the clock definition for mcbsps on clock34xx.h. Device identification must be done using .id field, not only name field. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/clock3

[PATCH 1/4] PLAT-OMAP: MCBSP: Tranform into platform driver

2008-05-05 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch transform mcbsp code into a very initial implementation of a platform driver. It also gets ride of ifdefs on mcbsp.c code. To do it, a platform data structure was defined. Platform devices are located in arch/arm/plat-omap/devices.c

[PATCH 0/4] Updates on mcbsp driver (take #2)

2008-05-05 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi Tony, Here is the updated version of my previous patches. DMA and IRQ definitions were left as they are. Chandra is going to send his work on top of this series. This patch series updates mcbsp driver by transforming it into a platform driver

Re: [PATCH 1/4] PLAT-OMAP: MCBSP: Tranform into platform driver

2008-05-08 Thread Eduardo Valentin
Hi Trilok, Thanks for your comments, On Thu, May 8, 2008 at 2:23 PM, Trilok Soni <[EMAIL PROTECTED]> wrote: > Hi Eduardo, > > > > On Tue, May 6, 2008 at 2:53 AM, Eduardo Valentin <[EMAIL PROTECTED]> wrote: > > From: Eduardo Valentin <[EMAIL PROTECTED]>

Re: [PATCH 0/4] Updates on mcbsp driver (take #2)

2008-05-19 Thread Eduardo Valentin
OMAP3 EVM and want to make > sure I'm using the latest. > > Regards, > > Steve > > On Mon, May 5, 2008 at 2:23 PM, Eduardo Valentin <[EMAIL PROTECTED]> wrote: >> From: Eduardo Valentin <[EMAIL PROTECTED]> >> >> Hi Tony, >> >>

Re: [PATCH 1/4] PLAT-OMAP: MCBSP: Tranform into platform driver

2008-05-29 Thread Eduardo Valentin
Hi Tony and Trilok, I was out of office this last week due to some trainings and brazilian holidays, so that's why this message is delayed. I'm sending a version of this series including your patch and your comments. Please review them as usual. I think that Chandra can still put his work on top

[PATCH 0/5] Updates on mcbsp driver (take #3)

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi Tony, Here is the updated version of my previous patches. As on take #2, DMA and IRQ definitions were left as they are. Chandra is going to send his work on top of this series. This series adds Tony's comments about clock usage on plat-o

[PATCH 2/5] MACH-OMAP1: MCBSP: Add support for mcbsp on mach-omap1

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap1 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap1/mcb

[PATCH 5/5] MACH-OMAP2: MCBSP: Add support for mcbsp on mach-omap2

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap2 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/Makefile |2 + arch/arm/mach-omap2/mcb

[PATCH 4/5] Fix mcbsp clock definition on clock34xx.h

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix the clock definition for mcbsps on clock34xx.h. Device identification must be done using .id field, not only name field. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/clock3

[PATCH 1/5] PLAT-OMAP: MCBSP: Transform into platform driver

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch transform mcbsp code into a very initial implementation of a platform driver. It also gets ride of ifdefs on mcbsp.c code. To do it, a platform data structure was defined. Platform devices are located in arch/arm/plat-omap/devices.c

[PATCH 0/5] Updates on mcbsp driver (take #4)

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi Tony, Here is the updated version of my previous patches. Now with modifications recommended by Anand and Andrew. As on take #2, DMA and IRQ definitions were left as they are. Chandra is going to send his work on top of this series. This

[PATCH 5/5] MACH-OMAP2: MCBSP: Add support for mcbsp on mach-omap2

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap2 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/Makefile |2 + arch/arm/mach-omap2/mcb

[PATCH 3/5] ARM: OMAP: Fix 24xx mcbsp clocks

2008-05-29 Thread Eduardo Valentin
From: Tony Lindgren <[EMAIL PROTECTED]> Fix 24xx mcbsp clocks Signed-off-by: Tony Lindgren <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/clock24xx.h | 30 -- 1 files changed, 20 insertions(+), 10 deletions(-) diff --git a/arch/arm/mach-omap2/clock24xx.h b/arch/arm/ma

[PATCH 4/5] Fix mcbsp clock definition on clock34xx.h

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch fix the clock definition for mcbsps on clock34xx.h. Device identification must be done using .id field, not only name field. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap2/clock3

[PATCH 2/5] MACH-OMAP1: MCBSP: Add support for mcbsp on mach-omap1

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch adds support for mach-omap1 based on current mcbsp platform driver. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- arch/arm/mach-omap1/Makefile |2 + arch/arm/mach-omap1/mcb

[PATCH 1/5] PLAT-OMAP: MCBSP: Transform into platform driver

2008-05-29 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch transform mcbsp code into a very initial implementation of a platform driver. It also gets ride of ifdefs on mcbsp.c code. To do it, a platform data structure was defined. Platform devices are located in arch/arm/plat-omap/devices.c

Re: user space program for omap gpio

2008-06-03 Thread Eduardo Valentin
Hi Felipe, Actually, David Brownell is working on something very similar. sysfs for gpio lib. http://kerneltrap.org/mailarchive/linux-kernel/2008/4/28/1640134 That'd be really useful indeed. But I believe it is not merged yet. My 2 cents. Cheers, On Tue, Jun 3, 2008 at 7:19 AM, Felipe Balbi

Re: [PATCH] Fix for the i2c initialiation error on 2430sdp

2008-06-06 Thread Eduardo Valentin
Hi, On Fri, Jun 6, 2008 at 10:46 AM, Felipe Balbi <[EMAIL PROTECTED]> wrote: > > > On Fri, 6 Jun 2008 18:42:56 +0530, "arun c" > <[EMAIL PROTECTED]> wrote: >> static int __init omap2430_i2c_init(void) >> { >> - omap_register_i2c_bus(1, 400, NULL, 0); >> omap_register_i2c_bus(2, 2600, N

Re: [Resend][PATCH] Fix for the i2c initialization error on 2430sdp

2008-06-09 Thread Eduardo Valentin
On Mon, Jun 9, 2008 at 2:25 AM, arun c <[EMAIL PROTECTED]> wrote: > Hi all, > > Resending the patch after incorporating comments from > Chandra , Eduardo Valentin and Felipe. > > > > > From ee2a6fd572c6d04641

[PATCH 1/3] tea5761: Add init and sleep callbacks on tea5761 tuner

2008-06-09 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Add init and sleep callbacks on tea5761 tuner Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- drivers/media/common/tuners/tea5761.c | 44 + 1 files changed, 44 insertions(+), 0 deletions(-)

[PATCH 0/3] Updates for tea5761 (take #2)

2008-06-09 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Hi guys, Following recommendation from v4l people, I'm sending this update to our tea5761 driver. They already had a tuner for this device which communicates through i2c. I needed to update it because there were some register mis-utilizatio

[PATCH 2/3] tea5761 tuner: fix registers utilization

2008-06-09 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> Fix registers utilization. tnctrl register was supposed to be used but it was right shifted. frqset also was being configured using incorrect equation. Signed-off-by: Eduardo Valentin <[EMAIL PROTECTED]> --- drivers/media/common/tuners/tea5

[PATCH 3/3] radio-tea5761: Update driver

2008-06-09 Thread Eduardo Valentin
From: Eduardo Valentin <[EMAIL PROTECTED]> This patch updates this driver by changing the way it accesses the device. There is the tuner API which already has an implementation for tea5761. This patch changes the driver to use tuner API. It also changes the way ioctls are handled. This

  1   2   3   4   5   6   7   >