Re: Suspend/Resume Doesnot work with brcmfmac driver

2011-03-23 Thread Alim Akhtar
Hi Grant, My Bad, will keep the devel mailing list CCed, completely missed in last mail. Thanks for the explanation. I will review again my porting again and let you know. > 3) You don't mention if and when you've pulled > staging-2.6:drivers/staging/brcm80211/ into your 2.6.36 tree.  Have > you

Re: Update on Android PM enhancements - CONFIG_HAS_EARLYSUSPEND and friends

2011-03-23 Thread Arve Hjønnevåg
2011/3/23 Luis R. Rodriguez : > Arve, > > What ever happened with your series on the Android PM extensions you > had submitted in 2009 [1] ? I'm working on ath6kl right now and I'm > going to remove all that early suspend crap as its not upstream and I > want to get ath6kl into upstream proper. Do

Re: Update on Android PM enhancements - CONFIG_HAS_EARLYSUSPEND and friends

2011-03-23 Thread Greg KH
On Wed, Mar 23, 2011 at 01:05:47PM -0700, Luis R. Rodriguez wrote: > Arve, > > What ever happened with your series on the Android PM extensions you > had submitted in 2009 [1] ? I'm working on ath6kl right now and I'm > going to remove all that early suspend crap as its not upstream and I > want t

Update on Android PM enhancements - CONFIG_HAS_EARLYSUSPEND and friends

2011-03-23 Thread Luis R. Rodriguez
Arve, What ever happened with your series on the Android PM extensions you had submitted in 2009 [1] ? I'm working on ath6kl right now and I'm going to remove all that early suspend crap as its not upstream and I want to get ath6kl into upstream proper. Do you have plans for a replacement? Since t

[PATCH] staging: winbond: fixing some code styles issues

2011-03-23 Thread Chihau Chau
This patch fix some code style warnings found by the checkpatch.pl script, changing spaces for a tab Signed-off-by: Chihau Chau --- drivers/staging/winbond/phy_calibration.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/winbond/phy_calibration.c

[PATCH 16/16] Staging: hv: Make the function stor_vsc_on_host_reset() static

2011-03-23 Thread K. Y. Srinivasan
Make stor_vsc_on_host_reset() a static function. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc_api.h |1 - drivers/staging/hv/storvsc_drv.c |2 +- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dr

[PATCH 15/16] Staging: hv: Move the definition of the function stor_vsc_on_host_reset()

2011-03-23 Thread K. Y. Srinivasan
stor_vsc_on_host_reset() function is only used in storvsc_drv.c. Move this function from storvsc.c to storvsc_drv.c Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c | 56 drivers

[PATCH 14/16] Staging: hv: Move the definition of the function put_stor_device()

2011-03-23 Thread K. Y. Srinivasan
In preparation for further cleaning up storvsc.c move the definition of the inline function put_stor_device() from storvsc.c to storvsc_api.h. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c |9 - drivers

Re: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Linus Walleij
2011/3/23 Greg KH : >>  arch/arm/mach-ux500/Makefile         |    4 + >>  arch/arm/mach-ux500/board-mop500.c   |  160 >>  arch/arm/mach-ux500/devices-cg2900.c |  349 >> ++ >>  arch/arm/mach-ux500/devices-cg2900.h |   19 ++ >>  4 files changed, 532

[PATCH 13/16] Staging: hv: Move the definition of the function get_stor_device()

2011-03-23 Thread K. Y. Srinivasan
In preparation for further cleaning up storvsc.c move the definition of the inline function get_stor_device() from storvsc.c to storvsc_api.h. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c | 14 --

[PATCH 07/16] Staging: hv: Move the definition of stor_vsc_initialize()

2011-03-23 Thread K. Y. Srinivasan
Since stor_vsc_initialize() is only used in storvs_drv.c, move this function to storvsc_drv.c. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c | 64 -- drivers/staging/hv/storvsc

[PATCH 10/16] Staging: hv: Move the contents of blkvsc.c to blkvsc_drv.c

2011-03-23 Thread K. Y. Srinivasan
In preparation for getting rid of the file blkvsc.c, move its contents to the appropriate file. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/Makefile |2 +- drivers/staging/hv/blkvsc_drv.c | 79 +++

[PATCH 03/16] Staging: hv: Move the definition of struct storvsc_device

2011-03-23 Thread K. Y. Srinivasan
In preparation for getting rid of the inclusion of storvsc.c from blkvsc.c, move the definition of struct storvsc_device from storvsc.c to storvsc_api.h. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c | 26 ---

[PATCH 05/16] Staging: hv: Get rid of the include of storvsc.c from blkvsc.c

2011-03-23 Thread K. Y. Srinivasan
Now that all the structure definitions have been moved to a header file, get rid of the inclusion of storvsc.c from blkvsc.c. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/Makefile |2 +- drivers/staging/hv/blkvsc.c

[PATCH 12/16] Staging: hv: Cleanup initialization of blkvsc driver

2011-03-23 Thread K. Y. Srinivasan
Cleanup the initialization sequence for the block driver. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/blkvsc_drv.c |8 drivers/staging/hv/storvsc_api.h |1 - 2 files changed, 4 insertions(+), 5 deletions(-)

[PATCH 06/16] Staging: hv: Get rid of dead code in storvsc.c

2011-03-23 Thread K. Y. Srinivasan
Get rid of some "dead code" from storvsc.c Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc.c | 33 - 1 files changed, 0 insertions(+), 33 deletions(-) diff --git a/drivers/staging/hv/stor

[PATCH 08/16] Staging: hv: Make the function stor_vsc_initialize() static

2011-03-23 Thread K. Y. Srinivasan
Make the function stor_vsc_initialize() a static function. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc_api.h |1 - drivers/staging/hv/storvsc_drv.c |2 +- 2 files changed, 1 insertions(+), 2 deletions(-) dif

[PATCH 09/16] Staging: hv: Cleanup the initialization of storvsc driver

2011-03-23 Thread K. Y. Srinivasan
Cleanup the initialization sequence for the storvsc driver. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc_drv.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/hv/storvsc_drv

[PATCH 04/16] Staging: hv: Cleanup struct storvsc_device

2011-03-23 Thread K. Y. Srinivasan
Get rid of some dated comments from struct storvsc_device. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/storvsc_api.h |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/staging/hv/storvsc_api.h b

[PATCH 11/16] Staging: hv: Get rid of the file blkvsc.c

2011-03-23 Thread K. Y. Srinivasan
Now delete the file. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/blkvsc.c | 103 --- 1 files changed, 0 insertions(+), 103 deletions(-) delete mode 100644 drivers/staging/hv/blkvsc.c

[PATCH 02/16] Staging: hv: Move the definition of struct storvsc_request_extension

2011-03-23 Thread K. Y. Srinivasan
In preparation for getting rid of the inclusion of storvsc.c from blkvsc.c, move the definition of struct storvsc_request_extension from storvsc.c to storvsc_api.h. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/blkvsc.c |

[PATCH 01/16] Staging: hv: Add the inclusion guard for vstorage.h

2011-03-23 Thread K. Y. Srinivasan
In preparation for getting rid of the inclusion of storvsc.c from blkvsc.c, add inclusion guard to vstorage.h Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Hank Janssen --- drivers/staging/hv/vstorage.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-

[PATCH 00/16] Staging: hv: Cleanup storage drivers - Phase I

2011-03-23 Thread K. Y. Srinivasan
This is first in a series of patch-sets aimed at cleaning up the storage drivers for Hyper-V. Before I get into the details of this patch-set, I think it is useful to give a brief overview of the storage related front-end drivers currently in the tree for Linux on Hyper-V: On the host side, Windo

Re: Suspend/Resume Doesnot work with brcmfmac driver

2011-03-23 Thread Grant Grundler
+devel,+broadcom On Tue, Mar 22, 2011 at 7:58 PM, Alim Akhtar wrote: > Hi Grant, > Hope you are doing good. > As  you know, i am also using brcm4329 wifi driver. > recently i come across come patches which fix the suspend/resume issue > in brcmfamc driver. Hi Alim, Please keep the devel mailing

Re: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Arnd Bergmann
On Wednesday 23 March 2011, Par-Gunnar HJALMDAHL wrote: > I will see how I can fix this. I'm not 100% how I will solve the > "asking the hardware" part, but as you say we might be able to do > this in a better way by doing it from the main staging driver instead. The easiest way to do this would b

RE: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Par-Gunnar HJALMDAHL
Hi Arnd, > > diff --git a/arch/arm/mach-ux500/Makefile b/arch/arm/mach- > ux500/Makefile > > index b549a8f..47c92fa 100644 > > --- a/arch/arm/mach-ux500/Makefile > > +++ b/arch/arm/mach-ux500/Makefile > > @@ -2,6 +2,9 @@ > > # Makefile for the linux kernel, U8500 machine. > > # > > > > +ccflags

RE: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Par-Gunnar HJALMDAHL
Hi Randy, > > + > > +config CG2900_AUDIO > > + tristate "Support CG2900 audio interface" > > + depends on CG2900 > > + help > > + Support for ST-Ericsson CG2900 Connectivity audio > interface. Gives a > > + module the ability to setup audio paths within the CG2900 > controller. > > +

Re: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Randy Dunlap
On Wed, 23 Mar 2011 14:59:31 +0100 Par-Gunnar Hjalmdahl wrote: > This patch adds support for the ST-Ericsson CG2900 > Connectivity Combo controller (Bluetooth, FM, GPS). > > diff --git a/drivers/staging/cg2900/Kconfig b/drivers/staging/cg2900/Kconfig > new file mode 100644 > index 000..d0ba5c

RE: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Par-Gunnar HJALMDAHL
Hi Greg, Thanks for your comments. > > + > > + - Decide upon architecture. Some people consider architecture in > the cg2900 > > + driver to be too complex. We consider it to be not more complex > than needed. > > What do you mean by this? It sounds as if you do not consider this a > valid th

iPhone/iPad Application Development - Blackberry/Android Application Development

2011-03-23 Thread Garrison
iPhone/iPad Application Development - Blackberry/Android Mobile Application Development We are China based company explicitly active for iPhone software programming solutions and Mobile Application Development services as well as wireless application (WAP) development. We are organized to deliv

Animated Movie - Cartoon Movie - 3D/2D Animation Services

2011-03-23 Thread Louis
You are receiving this email because we wish you to use our 3D/2D Movie Animation Services. We are a China based Animated Movie Studio. with the technical, our studo is a computer animation studio with the technical, creative and production capabilities to create a new generation of animated f

Re: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Vitaly Wool
On Wed, Mar 23, 2011 at 2:59 PM, Par-Gunnar Hjalmdahl wrote: > diff --git a/drivers/staging/cg2900/TODO b/drivers/staging/cg2900/TODO > new file mode 100644 > index 000..f6fb76a > --- /dev/null > +++ b/drivers/staging/cg2900/TODO > @@ -0,0 +1,21 @@ > +TODO > + > + > + - Decide upon archite

Re: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Arnd Bergmann
On Wednesday 23 March 2011, Par-Gunnar Hjalmdahl wrote: > +TODO > + > + > + - Decide upon architecture. Some people consider architecture in the cg2900 > + driver to be too complex. We consider it to be not more complex than > needed. > + > + - Currently the cg2900_uart registers as protocol

Re: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Arnd Bergmann
On Wednesday 23 March 2011, Par-Gunnar Hjalmdahl wrote: > This patch adds the board specific data for the CG2900 > driver on a UX500 board. Thanks for the follow-up in staging. I hope this will make the work of getting this driver into shape done more easily as we have a code base to discuss. >

Re: [PATCH v2] staging/msm: clearup read syscalls in kernel space

2011-03-23 Thread Greg KH
On Wed, Mar 23, 2011 at 02:45:10PM +0800, Xiaochen Wang wrote: > On Tue, Mar 22, 2011 at 09:15:09PM -0700, Greg KH wrote: > > Did you test this change? And it worked? > I'm sorry for not testing this:( > > I can only compile the changed codes in 2.6.35. > The whole msm cannot be compiled in 2.6.3

RE: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Par-Gunnar HJALMDAHL
Hi Greg, > -Original Message- > From: Greg KH [mailto:gre...@suse.de] > Sent: den 23 mars 2011 15:27 > To: Par-Gunnar HJALMDAHL > Cc: de...@driverdev.osuosl.org; Linus Walleij; linux- > ker...@vger.kernel.org; linux-blueto...@vger.kernel.org; Pavan Savoy; > Vitaly Wool; Alan Cox; Arnd Berg

Re: [PATCH 1/2] staging: Add ST-Ericsson CG2900 driver

2011-03-23 Thread Greg KH
On Wed, Mar 23, 2011 at 02:59:31PM +0100, Par-Gunnar Hjalmdahl wrote: > +TODO > + > + > + - Decide upon architecture. Some people consider architecture in the cg2900 > + driver to be too complex. We consider it to be not more complex than > needed. What do you mean by this? It sounds as if

Re: [PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Greg KH
On Wed, Mar 23, 2011 at 03:00:03PM +0100, Par-Gunnar Hjalmdahl wrote: > This patch adds the board specific data for the CG2900 > driver on a UX500 board. > > Signed-off-by: Par-Gunnar Hjalmdahl > Acked-by: Linus Walleij > --- > arch/arm/mach-ux500/Makefile |4 + > arch/arm/mach-ux50

[PATCH 2/2] mach-ux500: Add CG2900 devices

2011-03-23 Thread Par-Gunnar Hjalmdahl
This patch adds the board specific data for the CG2900 driver on a UX500 board. Signed-off-by: Par-Gunnar Hjalmdahl Acked-by: Linus Walleij --- arch/arm/mach-ux500/Makefile |4 + arch/arm/mach-ux500/board-mop500.c | 160 arch/arm/mach-ux500/devices-cg2900.c | 34

[PATCH 0/2] Add ST-Ericsson CG2900 driver

2011-03-23 Thread Par-Gunnar Hjalmdahl
This patch set adds a driver for the ST-Ericsson CG2900 connectivity controller. It has earlier been tried to add this driver to the mfd and bluetooth areas, but due to continued discussions the driver is placed into staging for the moment. The patch set contains 2 patches: - The first patch adds

[PATCH] staging: cx25821: Reuse the mutex lock for remove BKL

2011-03-23 Thread Alessio Igor Bogani
The BKL isn't exit anymore so this driver don't should use it. Build tested only. Signed-off-by: Alessio Igor Bogani --- drivers/staging/cx25821/Kconfig |1 - drivers/staging/cx25821/cx25821-video.c |8 drivers/staging/cx25821/cx25821.h |1 - 3 files changed,

Re: [PATCH] staging: ft1000-pcmcia: Fix ft1000_dnld() to work also on 64bit architectures.

2011-03-23 Thread Belisko Marek
On Wed, Mar 23, 2011 at 11:27 AM, Jiri Slaby wrote: > On 03/23/2011 08:08 AM, Marek Belisko wrote: >> From: pixo >> >> Firmware file needs to be read by 4bytes also on 64 bit architectures. >> Change long type to u32 and also extend checking. Tested on 32 and also >> 64 bit architectures. >> >> S

Re: [PATCH] staging: ft1000-pcmcia: Fix ft1000_dnld() to work also on 64bit architectures.

2011-03-23 Thread Jiri Slaby
On 03/23/2011 08:08 AM, Marek Belisko wrote: > From: pixo > > Firmware file needs to be read by 4bytes also on 64 bit architectures. > Change long type to u32 and also extend checking. Tested on 32 and also > 64 bit architectures. > > Signed-off-by: Stano Lanci > Signed-off-by: Marek Belisko >

[PATCH] staging: ft1000-pcmcia: Fix ft1000_dnld() to work also on 64bit architectures.

2011-03-23 Thread Marek Belisko
From: pixo Firmware file needs to be read by 4bytes also on 64 bit architectures. Change long type to u32 and also extend checking. Tested on 32 and also 64 bit architectures. Signed-off-by: Stano Lanci Signed-off-by: Marek Belisko Tested-by: Stano Lanci --- drivers/staging/ft1000/ft1000-pc