RE: [PATCH v4 1/3] [media] at91: add code to enable/disable ISI_MCK clock

2011-10-21 Thread Wu, Josh
Hi, Guennadi On Monday, October 17, 2011 11:04 PM, Guennadi Liakhovetski wrote: > From: Josh Wu > > This patch > - add ISI_MCK clock enable/disable code. > - change field name in isi_platform_data structure > > Signed-off-by: Josh Wu > [g.liakhovet...@gmx.de: fix label names] > Signed-off-by: G

Re: OMAP3 ISP with digital sensor

2011-10-21 Thread Laurent Pinchart
Hi Gary, Aarrg, I'm sorry for the very late reply. Your mail splipped through the cracks :-/ (94 mails to go in my inbox, then I'll move to my mailing lists backlog :-)) On Tuesday 11 October 2011 15:42:01 Gary Thomas wrote: > Laurent, > > Do you have an example of how to use a digital sen

Re: RTL2831U driver updates

2011-10-21 Thread Alistair Buxton
On 9 August 2011 14:22, Alistair Buxton wrote: > After a couple of days the card locked up again just like before I have found something new about this. It turns out my MythTV tuning was incorrect as some channels had changed frequency due to the analogue switch-off. The card would freeze up whe

cron job: media_tree daily build: WARNINGS

2011-10-21 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date:Fri Oct 21 19:00:15 CEST 2011 git hash:35a912455ff5640dc410e91279b03e04045265b2 gcc version: i686-linux-gcc (GC

Re: [PATCH V2] v4l: use i2c_smbus_read_word_swapped

2011-10-21 Thread Robert Jarzmik
Jonathan Cameron writes: > Function ensures that error codes don't get mangled. > Dependant on: > i2c: boilerplate function for byte swapped smbus_write/read_word_data > which is working it's way through the i2c tree. > > Signed-off-by: Jonathan Cameron > Acked-by: Jean Delvare Acked-by: Rober

[PATCH V2] v4l: use i2c_smbus_read_word_swapped

2011-10-21 Thread Jonathan Cameron
Function ensures that error codes don't get mangled. Dependant on: i2c: boilerplate function for byte swapped smbus_write/read_word_data which is working it's way through the i2c tree. Signed-off-by: Jonathan Cameron Acked-by: Jean Delvare --- V2: Stray line removed as per Jean's comment. Tha

Re: [PATCH] v4l: use i2c_smbus_read_word_swapped

2011-10-21 Thread Jean Delvare
On Fri, 21 Oct 2011 11:13:29 +0100, Jonathan Cameron wrote: > Function ensures that error codes don't get mangled. > Dependant on: > i2c: boilerplate function for byte swapped smbus_write/read_word_data > which is working it's way through the i2c tree. > > Signed-off-by: Jonathan Cameron > --- >

[PATCH] v4l: use i2c_smbus_read_word_swapped

2011-10-21 Thread Jonathan Cameron
Function ensures that error codes don't get mangled. Dependant on: i2c: boilerplate function for byte swapped smbus_write/read_word_data which is working it's way through the i2c tree. Signed-off-by: Jonathan Cameron --- In some cases the now largely pointless boiler plate functions could be sq

Re: [PATCH 2/9] mm: alloc_contig_freed_pages() added

2011-10-21 Thread Mel Gorman
On Tue, Oct 18, 2011 at 10:26:37AM -0700, Michal Nazarewicz wrote: > On Tue, 18 Oct 2011 05:21:09 -0700, Mel Gorman wrote: > > >At this point, I'm going to apologise for not reviewing this a long long > >time ago. > > > >On Thu, Oct 06, 2011 at 03:54:42PM +0200, Marek Szyprowski wrote: > >>From:

[PATCH 2/5] m5mols: Replace IRQ workqueue to waitqueue only

2011-10-21 Thread HeungJun, Kim
In M-5MOLS driver, the workqueue code for IRQ is hard to re-use. So, remove the IRQ workqueue, and use only waitqueue for waiting IRQ with timeout. The info->issue has the status that interrupt is issued or not, then the info->interrupt has the IRQ status register at that time. Signed-off-by: Heun

[PATCH 4/5] m5mols: Add boot flag for not showing the msg of I2C error

2011-10-21 Thread HeungJun, Kim
In M-5MOLS sensor, the I2C error can be occured before sensor booting done, becase I2C interface is not stabilized although the sensor have done already for booting, so the right value is deliver through I2C interface. In case, it needs to make the I2C error msg not to be printed. Signed-off-by: H

[PATCH 1/5] m5mols: Add more functions to check busy status

2011-10-21 Thread HeungJun, Kim
This patch add 3 type of checking busy status functions. 1) Keep busy-loop ignoring the error of I2C negative return, 2) Provide the read status value from I2C to the caller, 3) Compare masked value with desire value. Signed-off-by: HeungJun, Kim Signed-off-by: Kyungmin Park --- drivers/media/v

[PATCH 5/5] m5mols: Relocation the order and count for CAPTURE interrupt

2011-10-21 Thread HeungJun, Kim
The double enabling CAPTURE interrupt is not needed in m5mols_start_capture(), so remove these, and add one at the only booting time once. Also, fix the order of CAPTURE sequence to the right way. Signed-off-by: HeungJun, Kim Signed-off-by: Kyungmin Park --- drivers/media/video/m5mols/m5mols_ca

[PATCH 3/5] m5mols: Support for interrupt in the sensor's booting time

2011-10-21 Thread HeungJun, Kim
The M-5MOLS suports 2 booting ways. 1) waiting specific delay(over 520ms), or 2) waiting with interrupt. The way of interrupt type supports optimum delay for booting by waiting interrupt. Also, in case of using this way, it doesn't need the extra delay in the m5mols_sensor_power() for stabilization