[PATCH] ngene: drop ngene_link_reset()

2016-12-18 Thread Cao jin
In AER recovery, pci_error_handlers.link_reset() is never called, drop it now. Signed-off-by: Cao jin --- drivers/media/pci/ngene/ngene-cards.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/drivers/media/pci/ngene/ngene-cards.c b/drivers/media/pci/ngene/ngene-cards.c index 423e8c889

cron job: media_tree daily build: WARNINGS

2016-12-18 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: Mon Dec 19 05:00:20 CET 2016 media-tree git hash:d183e4efcae8d88a2f252e546978658ca6d273cc media_build git

Re: [PATCH v2] dma-buf: Wait on the reservation object when sync'ing before CPU access

2016-12-18 Thread Inki Dae
2016년 08월 16일 01:02에 Daniel Vetter 이(가) 쓴 글: > On Mon, Aug 15, 2016 at 04:42:18PM +0100, Chris Wilson wrote: >> Rendering operations to the dma-buf are tracked implicitly via the >> reservation_object (dmabuf->resv). This is used to allow poll() to >> wait upon outstanding rendering (or just quer

Re: [PATCH 04/15] ov7670: get xclk

2016-12-18 Thread Sakari Ailus
Hi Hans, On Mon, Dec 12, 2016 at 04:55:09PM +0100, Hans Verkuil wrote: > From: Hans Verkuil > > Get the clock for this sensor. > > Signed-off-by: Hans Verkuil > --- > drivers/media/i2c/ov7670.c | 35 --- > 1 file changed, 28 insertions(+), 7 deletions(-) > > d

Re: [PATCH 00/15] atmel-isi/ov7670/ov2640: convert to standalone drivers

2016-12-18 Thread Sakari Ailus
On Mon, Dec 12, 2016 at 04:55:05PM +0100, Hans Verkuil wrote: > From: Hans Verkuil > > This patch series converts the soc-camera atmel-isi to a standalone V4L2 > driver. > > The same is done for the ov7670 and ov2640 sensor drivers: the ov7670 was > used to test the atmel-isi driver. The ov2640

Re: [PATCH 02/15] ov7670: call v4l2_async_register_subdev

2016-12-18 Thread Sakari Ailus
On Mon, Dec 12, 2016 at 04:55:07PM +0100, Hans Verkuil wrote: > From: Hans Verkuil > > Add v4l2-async support for this driver. > > Signed-off-by: Hans Verkuil > --- > drivers/media/i2c/ov7670.c | 21 +++-- > 1 file changed, 15 insertions(+), 6 deletions(-) > > diff --git a/dri

Re: [PATCH 01/15] ov7670: add media controller support

2016-12-18 Thread Sakari Ailus
Hi Hans, On Mon, Dec 12, 2016 at 04:55:06PM +0100, Hans Verkuil wrote: > From: Hans Verkuil > > Add media controller support. > > Signed-off-by: Hans Verkuil Acked-by: Sakari Ailus -- Sakari Ailus e-mail: sakari.ai...@iki.fi XMPP: sai...@retiisi.org.uk -- To unsubscribe from this list:

Re: [PATCH v5] media: Driver for Toshiba et8ek8 5MP sensor

2016-12-18 Thread Sakari Ailus
Hi Pavel, On Wed, Dec 14, 2016 at 09:12:02PM +0100, Pavel Machek wrote: > Hi! > > > On Wednesday 14 December 2016 13:24:51 Pavel Machek wrote: > > > > > > Add driver for et8ek8 sensor, found in Nokia N900 main camera. Can be > > > used for taking photos in 2.5MP resolution with fcam-dev. > > >

Re: [PATCH v4] media: Driver for Toshiba et8ek8 5MP sensor

2016-12-18 Thread Sakari Ailus
Hi Pavel, On Tue, Dec 13, 2016 at 10:05:06PM +0100, Pavel Machek wrote: > Hi! > > I have finally found the old mail you were refering to. Let me go > through it. > > > > +/* > > > + * Convert exposure time `us' to rows. Modify `us' to make it to > > > + * correspond to the actual exposure time.

[PATCH] media: dvb: dmx: fixed coding style issues of spacing

2016-12-18 Thread devendra sharma
Fixed coding style issues of spacing Signed-off-by: Devendra Sharma --- drivers/media/dvb-core/dmxdev.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/media/dvb-core/dmxdev.c b/drivers/media/dvb-core/dmxdev.c index efe55a3..cd240a2 100644 --- a/drivers/m

[PATCH v6 0/6] Add support for IR transmitters

2016-12-18 Thread Andi Shyti
board which support is currently ongoing. The last patch adds support for an IR transmitter driven by the MOSI line of an SPI controller, it's the case of the Samsung TM2(e) board which support is currently ongoing. The patchset is based on next-20161218, while the media directory is a bit mor

[PATCH v6 1/6] [media] rc-main: assign driver type during allocation

2016-12-18 Thread Andi Shyti
The driver type can be assigned immediately when an RC device requests to the framework to allocate the device. This is an 'enum rc_driver_type' data type and specifies whether the device is a raw receiver or scancode receiver. The type will be given as parameter to the rc_allocate_device device.

[PATCH v6 2/6] [media] rc-main: split setup and unregister functions

2016-12-18 Thread Andi Shyti
Move the input device allocation, map and protocol handling to different functions. This patch fixes the following checkpatch error as well: ERROR: do not initialise statics to false #1438: FILE: drivers/media/rc/rc-main.c:1438: + static bool raw_init = false; /* raw decoders loaded?

[PATCH v6 5/6] Documentation: bindings: add documentation for ir-spi device driver

2016-12-18 Thread Andi Shyti
Document the ir-spi driver's binding which is a IR led driven through the SPI line. Signed-off-by: Andi Shyti Reviewed-by: Sean Young --- .../devicetree/bindings/leds/irled/spi-ir-led.txt | 29 ++ 1 file changed, 29 insertions(+) create mode 100644 Documentation/devicetree

[PATCH v6 3/6] [media] rc-core: add support for IR raw transmitters

2016-12-18 Thread Andi Shyti
IR raw transmitter driver type is specified in the enum rc_driver_type as RC_DRIVER_IR_RAW_TX which includes all those devices that transmit raw stream of bit to a receiver. The data are provided by userspace applications, therefore they don't need any input device allocation, but still they need

[PATCH v6 4/6] [media] rc-ir-raw: do not generate any receiving thread for raw transmitters

2016-12-18 Thread Andi Shyti
Raw IR transmitters do not need any thread listening for occurring events. Check the driver type before running the thread. Signed-off-by: Andi Shyti Reviewed-by: Sean Young --- drivers/media/rc/rc-ir-raw.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/d

[PATCH v6 6/6] [media] rc: add support for IR LEDs driven through SPI

2016-12-18 Thread Andi Shyti
The ir-spi is a simple device driver which supports the connection between an IR LED and the MOSI line of an SPI device. The driver, indeed, uses the SPI framework to stream the raw data provided by userspace through an rc character device. The chardev is handled by the LIRC framework and its func

Re: [PATCH v5 2/6] [media] rc-main: split setup and unregister functions

2016-12-18 Thread Andi Shyti
Hi Sean, > On Fri, Dec 16, 2016 at 12:10:26PM +, Sean Young wrote: > > Sorry to add to your woes, but there are some checkpatch warnings and > > errors. Please can you correct these. One is below. > > Actually, the changes are pretty minor, I can fix them up before sending > them to Mauro. So