Re: [PATCH 2/6] v4l: omap4iss: Add support for OMAP4 camera interface - Video devices

2013-10-02 Thread Hans Verkuil
On 10/03/2013 01:55 AM, Laurent Pinchart wrote: > From: Sergio Aguirre > > This adds a very simplistic driver to utilize the CSI2A interface inside > the ISS subsystem in OMAP4, and dump the data to memory. > > Check Documentation/video4linux/omap4_camera.txt for details. > > This commit adds v

Re: [PATCH 1/6] v4l: omap4iss: Add support for OMAP4 camera interface - Core

2013-10-02 Thread Hans Verkuil
A few small comments below... On 10/03/2013 01:55 AM, Laurent Pinchart wrote: > From: Sergio Aguirre > > This adds a very simplistic driver to utilize the CSI2A interface inside > the ISS subsystem in OMAP4, and dump the data to memory. > > Check Documentation/video4linux/omap4_camera.txt for d

RE: [PATCH] Staging: MTD: Micron SPINAND Driver support

2013-10-02 Thread Gupta, Pekon
> From: linux-mtd On Behalf Of Brian Norris > > On Tue, Oct 01, 2013 at 03:03:58PM +0530, Kamlakant Patel wrote: > > This patch adds support for Micron SPINAND via MTD. > > > > Signed-off-by: Mona Anonuevo > > Signed-off-by: Kamlakant Patel > > --- > > This patch has to be merged via staging tre

Re: [PATCH] Staging: MTD: Micron SPINAND Driver support

2013-10-02 Thread Greg KH
On Tue, Oct 01, 2013 at 03:03:58PM +0530, Kamlakant Patel wrote: > --- a/drivers/staging/Kconfig > +++ b/drivers/staging/Kconfig > @@ -136,6 +136,8 @@ source "drivers/staging/goldfish/Kconfig" > > source "drivers/staging/netlogic/Kconfig" > > +source "drivers/staging/mt29f_spinand/Kconfig" > +

Re: [PATCH] Staging: MTD: Micron SPINAND Driver support

2013-10-02 Thread Greg KH
On Tue, Oct 01, 2013 at 03:03:58PM +0530, Kamlakant Patel wrote: > > drivers/staging/Kconfig | 2 + > drivers/staging/Makefile | 1 + > drivers/staging/mt29f_spinand/Kconfig | 16 + > drivers/staging/mt29f_spinand/Makefile| 1 + >

Re: [PATCH v4 1/2] staging: dgap: tty.c: adds error handing in tty driver allocations

2013-10-02 Thread Greg KH
On Tue, Oct 01, 2013 at 12:54:20PM -0400, Lidza Louina wrote: > + return 0; > + > +err_unregister_serial: > +tty_unregister_driver(brd->SerialDriver); > +err_free_print_ttys: > +kfree(brd->PrintDriver->ttys); > +err_put_tty_print: > +put_tty_driver(brd->PrintDriver); > +

dm-writeboost testing

2013-10-02 Thread Mikulas Patocka
Hi I tested dm-writeboost and I found these problems: Performance problems: I tested dm-writeboost with disk as backing device and ramdisk as cache device. When I run mkfs.ext4 on the dm-writeboost device, it writes data to the cache on the first time. However, on next mkfs.ext4 invocations,

RE: [PATCH] staging: dwc2: Make dwc2_hw_params.host_channels large enough

2013-10-02 Thread Paul Zimmerman
> From: Matthijs Kooijman [mailto:matth...@stdin.nl] > Sent: Tuesday, October 01, 2013 2:43 PM > > The hardware offers a 4-bit register containing the number of host > channels. However, the values of these register mean 1-16 host channels, > not 0-15. Since the dwc2_hw_params struct stores the ac

Re: [dm-devel] Reworking dm-writeboost [was: Re: staging: Add dm-writeboost]

2013-10-02 Thread Mikulas Patocka
On Tue, 1 Oct 2013, Joe Thornber wrote: > > Alternatively, delaying them will stall the filesystem because it's > > waiting for said REQ_FUA IO to complete. For example, journal writes > > in XFS are extremely IO latency sensitive in workloads that have a > > signifincant number of ordering cons

[PATCH 6/6] v4l: omap4iss: Add support for OMAP4 camera interface - Build system

2013-10-02 Thread Laurent Pinchart
This adds a very simplistic driver to utilize the CSI2A interface inside the ISS subsystem in OMAP4, and dump the data to memory. Check Documentation/video4linux/omap4_camera.txt for details. This commit adds and updates Kconfig's and Makefile's, as well as a TODO list. Signed-off-by: Laurent Pi

[PATCH 5/6] v4l: omap4iss: Add support for OMAP4 camera interface - Resizer

2013-10-02 Thread Laurent Pinchart
From: Sergio Aguirre This adds a very simplistic driver to utilize the CSI2A interface inside the ISS subsystem in OMAP4, and dump the data to memory. Check Documentation/video4linux/omap4_camera.txt for details. This commit adds resizer support. Signed-off-by: Sergio Aguirre [Port the drive

[PATCH 4/6] v4l: omap4iss: Add support for OMAP4 camera interface - IPIPE(IF)

2013-10-02 Thread Laurent Pinchart
From: Sergio Aguirre This adds a very simplistic driver to utilize the CSI2A interface inside the ISS subsystem in OMAP4, and dump the data to memory. Check Documentation/video4linux/omap4_camera.txt for details. This commit adds the IPIPEIF and IPIPE processing blocks support. Signed-off-by:

[PATCH 0/6] OMAP4 ISS driver

2013-10-02 Thread Laurent Pinchart
Hello, The OMAP4 ISS driver has lived out of tree for more than two years now. This situation is both sad and resource-wasting, as the driver has been used (and thus) hacked since then with nowhere to send patches to. Time has come to fix the problem. As the code is mostly, but not quite ready fo

[PATCH 3/6] v4l: omap4iss: Add support for OMAP4 camera interface - CSI receivers

2013-10-02 Thread Laurent Pinchart
From: Sergio Aguirre This adds a very simplistic driver to utilize the CSI2A interface inside the ISS subsystem in OMAP4, and dump the data to memory. Check Documentation/video4linux/omap4_camera.txt for details. This commit adds CSI receivers support. Signed-off-by: Sergio Aguirre [Port the

[PATCH 2/6] v4l: omap4iss: Add support for OMAP4 camera interface - Video devices

2013-10-02 Thread Laurent Pinchart
From: Sergio Aguirre This adds a very simplistic driver to utilize the CSI2A interface inside the ISS subsystem in OMAP4, and dump the data to memory. Check Documentation/video4linux/omap4_camera.txt for details. This commit adds video devices support. Signed-off-by: Sergio Aguirre [Port the

RE: [PATCH 2/2] hyperv-fb: add blanking support

2013-10-02 Thread Haiyang Zhang
> -Original Message- > From: linux-fbdev-ow...@vger.kernel.org [mailto:linux-fbdev- > ow...@vger.kernel.org] On Behalf Of Gerd Hoffmann > Sent: Wednesday, October 2, 2013 7:55 AM > Cc: Gerd Hoffmann; KY Srinivasan; Haiyang Zhang; Jean-Christophe Plagniol- > Villard; Tomi Valkeinen; open lis

RE: [PATCH V2 1/1] X86: Hyper-V: Get the local APIC timer frequency from the hypervisor

2013-10-02 Thread KY Srinivasan
> -Original Message- > From: H. Peter Anvin [mailto:h...@zytor.com] > Sent: Monday, September 23, 2013 8:50 AM > To: KY Srinivasan > Cc: Gleb Natapov; x...@kernel.org; gre...@linuxfoundation.org; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de; > a...@canonic

[PATCH 2/3] ARM: dts: imx6qdl-wandboard: Add HDMI support

2013-10-02 Thread Fabio Estevam
Signed-off-by: Fabio Estevam --- arch/arm/boot/dts/imx6dl.dtsi| 4 arch/arm/boot/dts/imx6q.dtsi | 4 arch/arm/boot/dts/imx6qdl-wandboard.dtsi | 13 + arch/arm/boot/dts/imx6qdl.dtsi | 10 ++ 4 files changed, 31 insertions(+) diff -

[PATCH 3/3] ARM: dts: imx6qdl-sabresd: Add HDMI support

2013-10-02 Thread Fabio Estevam
Signed-off-by: Fabio Estevam --- arch/arm/boot/dts/imx6qdl-sabresd.dtsi | 14 ++ 1 file changed, 14 insertions(+) diff --git a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi b/arch/arm/boot/dts/imx6qdl-sabresd.dtsi index 64e454b..55f261c 100644 --- a/arch/arm/boot/dts/imx6qdl-sabresd.dtsi +

RE: [PATCH 1/2] hyperv-fb: add pci stub

2013-10-02 Thread Haiyang Zhang
> -Original Message- > From: linux-fbdev-ow...@vger.kernel.org [mailto:linux-fbdev- > ow...@vger.kernel.org] On Behalf Of Gerd Hoffmann > Sent: Wednesday, October 2, 2013 7:55 AM > Cc: Gerd Hoffmann; KY Srinivasan; Haiyang Zhang; Jean-Christophe Plagniol- > Villard; Tomi Valkeinen; open l

Re: [PATCH] Staging: MTD: Micron SPINAND Driver support

2013-10-02 Thread Brian Norris
On Tue, Oct 01, 2013 at 03:03:58PM +0530, Kamlakant Patel wrote: > This patch adds support for Micron SPINAND via MTD. > > Signed-off-by: Mona Anonuevo > Signed-off-by: Kamlakant Patel > --- > This patch has to be merged via staging tree. > > This is a driver from Micron for MT29F1G01ZACH4 SP

RE: Drivers: scsi: FLUSH timeout

2013-10-02 Thread KY Srinivasan
> -Original Message- > From: geert.uytterhoe...@gmail.com [mailto:geert.uytterhoe...@gmail.com] > On Behalf Of Geert Uytterhoeven > Sent: Wednesday, September 25, 2013 1:40 AM > To: KY Srinivasan > Cc: Mike Christie; Jack Wang; Greg KH; linux-ker...@vger.kernel.org; > de...@linuxdriverpro

Re: [PATCH v3 1/2] staging: dgap: tty.c: adds error handing in tty driver allocations

2013-10-02 Thread Lidza Louina
On Tue, Oct 1, 2013 at 1:59 PM, Dan Carpenter wrote: > On Tue, Oct 01, 2013 at 12:32:06PM -0400, Lidza Louina wrote: >> On Tue, Oct 1, 2013 at 12:09 PM, Dan Carpenter >> wrote: >> > On Tue, Oct 01, 2013 at 12:00:23PM -0400, Lidza Louina wrote: >> >> @@ -306,7 +316,16 @@ int dgap_tty_register(str

RE: [PATCH 1/2] hyperv-fb: add pci stub

2013-10-02 Thread KY Srinivasan
> -Original Message- > From: Gerd Hoffmann [mailto:kra...@redhat.com] > Sent: Wednesday, October 02, 2013 4:55 AM > Cc: Gerd Hoffmann; KY Srinivasan; Haiyang Zhang; Jean-Christophe Plagniol- > Villard; Tomi Valkeinen; open list:Hyper-V CORE AND...; open list:FRAMEBUFFER > LAYER; open list

[PATCH] staging: comedi: ni_65xx: (bug fix) confine insn_bits to one subdevice

2013-10-02 Thread Ian Abbott
The `insn_bits` handler `ni_65xx_dio_insn_bits()` has a `for` loop that currently writes (optionally) and reads back up to 5 "ports" consisting of 8 channels each. It reads up to 32 1-bit channels but can only read and write a whole port at once - it needs to handle up to 5 ports as the first chan

Re: [PATCH] Staging : android: binder.c: Prefer seq_puts to seq_printf

2013-10-02 Thread Joe Perches
On Tue, 2013-10-01 at 21:57 -0400, Mathieu Rhéaume wrote: > This patch changes seq_printf for seq_puts in binder.c. > It fixes the warnings emitted by checkpatch.pl. Please realign function argument to the open parenthesis. > diff --git a/drivers/staging/android/binder.c > b/drivers/staging/andr

[PATCH 1/2] hyperv-fb: add pci stub

2013-10-02 Thread Gerd Hoffmann
This patch adds a pci stub driver to hyper-fb. The hyperv framebuffer driver will bind to the pci device then, so linux kernel and userspace know there is a proper kernel driver for the device active. lspci shows this for example: [root@dhcp231 ~]# lspci -vs8 00:08.0 VGA compatible controller: M

[PATCH 2/2] hyperv-fb: add blanking support

2013-10-02 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- drivers/video/hyperv_fb.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/video/hyperv_fb.c b/drivers/video/hyperv_fb.c index 8d456dc..130708f 100644 --- a/drivers/video/hyperv_fb.c +++ b/drivers/video/hyperv_fb.c @@ -575,6 +575,10 @@ static int h

Re: [PATCH 18/22] staging: comedi: ni_6527: tidy up the interrupt subdevice

2013-10-02 Thread Ian Abbott
On 2013-10-02 12:17, Ian Abbott wrote: On 2013-10-01 23:14, H Hartley Sweeten wrote: Do the request_irq() before setting up the subdevices. Only initialize the interrupt subdevice if the irq is actually available. Since it's using IRQ_SHARED, you'll need add a test to the start of ni6527_inter

Re: [PATCH 00/22] staging: comedi: ni_6527: cleanup driver

2013-10-02 Thread Ian Abbott
On 2013-10-01 23:07, H Hartley Sweeten wrote: Cleanup another comedi driver. H Hartley Sweeten (22): staging: comedi: ni_6527: remove DRIVER_NAME define staging: comedi: ni_6527: remove unused NI6527_*_SIZE defines staging: comedi: ni_6527: remove unused DEBUG* defines staging: comed

Re: [PATCH 18/22] staging: comedi: ni_6527: tidy up the interrupt subdevice

2013-10-02 Thread Ian Abbott
On 2013-10-01 23:14, H Hartley Sweeten wrote: Do the request_irq() before setting up the subdevices. Only initialize the interrupt subdevice if the irq is actually available. Since it's using IRQ_SHARED, you'll need add a test to the start of ni6527_interrupt() to check dev->attached before ac

Re: [PATCH 20/21] staging: comedi: ni_at_ao: fix analog output ranges

2013-10-02 Thread Ian Abbott
On 2013-10-01 18:14, Hartley Sweeten wrote: On Tuesday, October 01, 2013 3:27 AM, Ian Abbott wrote: On 2013-10-01 01:55, H Hartley Sweeten wrote: Each analog output channel is individually configurable. The current analog output 'range_table' selection in this driver assumes that all the channe

Re: [PATCH] staging: dwc2: Make dwc2_hw_params.host_channels large enough

2013-10-02 Thread Matthijs Kooijman
Hey Dinh, > >Reported-by: Dinh Nguyen > Can you please use: > Dinh Nguyen Sorry, I just used your sender address, should have checked your patch instead. Paul, if you can ack this patch, I'll resend it with the proper tag and include your acked-by as well. Gr. Matthijs signature.asc Descrip

Re: [PATCH v3] Staging : android: binder.c: Prefer seq_puts to seq_printf

2013-10-02 Thread Dan Carpenter
On Wed, Oct 02, 2013 at 01:02:39AM -0400, Mathieu Rhéaume wrote: > Changes since v2: > * Fixed the indent in the method calls that had too many tab. > > >8--8< > > This patch changes seq_printf for seq_puts in binder.c. > It fixes the warnings

Re: [PATCH] Staging : android: binder.c: Prefer seq_puts to seq_printf

2013-10-02 Thread Joe Perches
On Wed, 2013-10-02 at 15:15 +1000, Ryan Mallon wrote: > On 02/10/13 11:57, Mathieu Rhéaume wrote: > > This patch changes seq_printf for seq_puts in binder.c. > > It fixes the warnings emitted by checkpatch.pl. [] > Umm, this won't compile. seq_puts() is defined as: > > int seq_puts(struct seq_fi

Re: [PATCH] Staging : android: binder.c: Prefer seq_puts to seq_printf

2013-10-02 Thread Dan Carpenter
On Tue, Oct 01, 2013 at 09:57:36PM -0400, Mathieu Rhéaume wrote: > This patch changes seq_printf for seq_puts in binder.c. > It fixes the warnings emitted by checkpatch.pl. Which warnings? Seems like a false positive somehow because seq_puts() is totally wrong here. This doesn't compile. regard

[PATCH] staging: dwc2: Make dwc2_hw_params.host_channels large enough

2013-10-02 Thread Matthijs Kooijman
The hardware offers a 4-bit register containing the number of host channels. However, the values of these register mean 1-16 host channels, not 0-15. Since the dwc2_hw_params struct stores the actual number of host channels supported instead of the raw register value, it should be 5 bits wide inste

Re: [PATCH] Staging: android: binder.c: Fixed 80 characters warnings from checkpatch.pl

2013-10-02 Thread Dan Carpenter
On Tue, Oct 01, 2013 at 09:39:48PM -0400, Mathieu Rhéaume wrote: > Fixed a lot of warnings from checkpatch.pl about the 80 characters per line > limitation. > The code was better in the original, sorry. Also this doesn't apply to linux-next from Friday. regards, dan carpenter

Re: [PATCH v2] Staging : android: binder.c: Prefer seq_puts to seq_printf

2013-10-02 Thread Joe Perches
On Tue, 2013-10-01 at 23:57 -0400, Mathieu Rhéaume wrote: > Changes since v2: > * Fixed the indent problems (2 tab and 1 space) by Joe Perches. > * Found more calls to convert from seq_printf to seq_puts [] > diff --git a/drivers/staging/android/binder.c > b/drivers/staging/android/binder.c [] >