Headsup with LogiLink DVB-T2/C Stick

2018-06-19 Thread Uwe Kleine-König
Hello, I found patches by Andreas Kemnade[1] to support the LogiLink VG0022A stick. After adapting them to v4.16 I can watch the DVB-T2 channels (didn't test DVB-C yet). Would it make sense to resubmit these? Best regards Uwe [1] https://www.spinics.net/lists/linux-media/msg112928.html

[PATCH] dvb: gp8psk: specify license using MODULE_LICENSE

2016-11-17 Thread Uwe Kleine-König
This fixes WARNING: modpost: missing MODULE_LICENSE() in drivers/media/dvb-frontends/gp8psk-fe.o see include/linux/module.h for more information Fixes: 7a0786c19d65 ("gp8psk: Fix DVB frontend attach") Signed-off-by: Uwe Kleine-König <u...@kleine-koenig.org> --- d

[PATCH 1/2] [media] tc358743: set direction of reset gpio using devm_gpiod_get

2015-08-18 Thread Uwe Kleine-König
Commit 256148246852 ([media] tc358743: support probe from device tree) failed to explicitly set the direction of the reset gpio. Use the optional flag of devm_gpiod_get to make up leeway. This is also necessary because the flag parameter will become mandatory soon. Signed-off-by: Uwe Kleine

[PATCH 2/2] [media] tc358743: make reset gpio optional

2015-08-18 Thread Uwe Kleine-König
Commit 256148246852 ([media] tc358743: support probe from device tree) specified in the device tree binding documentation that the reset gpio is optional. Make the implementation match accordingly. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/i2c/tc358743.c

[PULL gpio-for-next] gpio: make flags mandatory for gpiod_get functions

2015-07-06 Thread Uwe Kleine-König
. Thanks Uwe Uwe Kleine-König (10): drm/msm/dp: use flags argument of devm_gpiod_get to set direction drm/tilcdc: panel: make better use of gpiod API iio: light: stk3310: use flags argument of devm_gpiod_get iio: magn: bmc150: use flags argument of devm_gpiod_get media

[PATCH gpio-for-next 05/10] media: i2c/adp1653: set enable gpio to output

2015-07-06 Thread Uwe Kleine-König
-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/i2c/adp1653.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/i2c/adp1653.c b/drivers/media/i2c/adp1653.c index c70ababce954..5dd39775d6ca 100644 --- a/drivers/media/i2c/adp1653.c +++ b

[PATCH] media: i2c/adp1653: set enable gpio to output

2015-06-12 Thread Uwe Kleine-König
Without setting the direction of a gpio to output a call to gpiod_set_value doesn't have a defined outcome. Furthermore this is one caller less that stops us making the flags argument to gpiod_get*() mandatory. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- Hello, this patch

[PATCH] media: radio-si4713: improve usage of gpiod API

2015-03-26 Thread Uwe Kleine-König
error checking, but is simpler to use which allows further simplification. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/radio/si4713/si4713.c | 18 ++ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/drivers/media/radio/si4713/si4713.c

Re: [PATCH] media: adv7604: improve usage of gpiod API

2015-03-03 Thread Uwe Kleine-König
Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] media: adv7604: improve usage of gpiod API

2015-03-01 Thread Uwe Kleine-König
of devm_gpiod_get_index with ignoring all errors. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- BTW, sparse fails to check this file with many errors like: drivers/media/i2c/adv7604.c:311:11: error: unknown field name in initializer Didn't look into that. --- drivers

Re: [PATCH] ARM: i.MX: Remove excess symbols ARCH_MX1, ARCH_MX25 and MACH_MX27

2014-05-11 Thread Uwe Kleine-König
On Sun, May 11, 2014 at 12:50:06PM +0400, Alexander Shiyan wrote: This patch removes excess symbols ARCH_MX1, ARCH_MX25 and MACH_MX27. Instead we use SOC_IMX*. Signed-off-by: Alexander Shiyan shc_w...@mail.ru Acked-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Thanks Uwe

Re: [RFC] [PATCH] media: marvell-ccic: use devm to release clk

2013-11-05 Thread Uwe Kleine-König
mipi_clk when getting its rate. Signed-off-by: Libin Yang lby...@marvell.com The driver still is no beauty, but with this patch the clk usage at least seems to be API conformant. Acked-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/platform/marvell-ccic/mmp-driver.c

Re: [PATCH v2] [media] marvell-ccic: simplify and fix clk handling (a bit)

2013-09-26 Thread Uwe Kleine-König
:20: error: 'struct mmp_camera_platform_data' has no member named 'lane' Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line

[PATCH] [media] marvell-ccic: simplify and fix clk handling (a bit)

2013-09-24 Thread Uwe Kleine-König
. This patch doesn't introduce new reasons for not building, but there are already several bulid problems. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- Cc: Libin Yang lby...@marvell.com --- drivers/media/platform/marvell-ccic/mmp-driver.c | 26 ++-- 1 file changed

[PATCH v2] [media] marvell-ccic: simplify and fix clk handling (a bit)

2013-09-24 Thread Uwe Kleine-König
. This patch doesn't introduce new reasons for not building, but there are already several bulid problems. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- Cc: Libin Yang lby...@marvell.com Changes since (implicit) v1: - really fix the third issue in the list. - drop whitespace noise

Re: [PATCH] [media] coda: Fix build due to iram.h rename

2013-01-07 Thread Uwe Kleine-König
Hello Fabio, On Mon, Jan 07, 2013 at 08:16:02AM -0200, Fabio Estevam wrote: Hi Sascha, On Mon, Jan 7, 2013 at 8:03 AM, Sascha Hauer s.ha...@pengutronix.de wrote: commit c045e3f13 (ARM: imx: include iram.h rather than mach/iram.h) changed the location of iram.h, which causes the

[PATCH v2 13/15] media/video/s5p-tv: mark const init data with __initconst instead of __initdata

2012-03-30 Thread Uwe Kleine-König
and so cannot contain non-const variables. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Tomasz Stanislawski t.stanisl...@samsung.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: linux-arm-ker...@lists.infradead.org Cc: linux-media

[PATCH 14/17] media/video/s5p-tv: mark const init data with __initconst instead of __initdata

2012-03-29 Thread Uwe Kleine-König
and so cannot contain non-const variables. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Tomasz Stanislawski t.stanisl...@samsung.com Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: linux-arm-ker...@lists.infradead.org Cc: linux-media

Re: mx2_camera driver on mx27ipcam: dma_alloc_coherent size failed

2011-08-05 Thread Uwe Kleine-König
probably more than one. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord

Re: mx2_camera driver on mx27ipcam: dma_alloc_coherent size failed

2011-08-04 Thread Uwe Kleine-König
.0: Camera driver detached from camera 0 mx27ipcam_camera_power: 0 Cannot say offhand. I'd instrument dma_alloc_from_coherent to check where it fails. The patch looks OK from a first glance. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König

Re: mx2_camera driver on mx27ipcam: dma_alloc_coherent size failed

2011-07-29 Thread Uwe Kleine-König
: Camera driver detached from camera 0 mx27ipcam_camera_power: 0 camera 0-0: camera device close Check out what arch/arm/mach-imx/mach-pcm037.c does to give some memory to the camera device. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial

Re: mx2_camera driver on mx27ipcam: dma_alloc_coherent size failed

2011-07-29 Thread Uwe Kleine-König
90026c8c823bff54172eab33a5e7fcecfd3df635 for all details. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message

Re: mx2_camera driver on mx27ipcam: dma_alloc_coherent size failed

2011-07-29 Thread Uwe Kleine-König
dca7c0b4293a06d1ed9387e729a4882896abccc2 is the relevant, it's in vanilla. http://git.kernel.org/linus/dca7c0b4293a06d1ed9387e729a4882896abccc2 Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http

Re: subscription request

2011-07-13 Thread Uwe Kleine-König
://vger.kernel.org/majordomo-info.html The automatically added signature nearly has the information you need. Just remove all uns from it and there you go. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http

Re: [PATCH] media/at91sam9x5-video: new driver for the high end overlay on at91sam9x5

2011-07-02 Thread Uwe Kleine-König
Hello Sylwester, thanks for your feedback. A few comments below. For the statements I don't reply to, you can consider a OK, will be fixed in v2. On Fri, Jul 01, 2011 at 11:20:32PM +0200, Sylwester Nawrocki wrote: On 06/29/2011 09:58 PM, Uwe Kleine-König wrote: + if (handled heoimr

[PATCH] media/at91sam9x5-video: new driver for the high end overlay on at91sam9x5

2011-06-29 Thread Uwe Kleine-König
Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- Hello, this is a driver that is still classified as work in progress. There are some known problems with it, still following the release early, release often principle I'd be happy to get some feed back from you. Here is a list

Re: vb2: about vb2_queue-queued_count

2011-06-13 Thread Uwe Kleine-König
Hello, On Mon, Jun 13, 2011 at 08:26:13AM +0200, Marek Szyprowski wrote: On Friday, June 10, 2011 6:29 PM Uwe Kleine-König wrote: On Fri, Jun 10, 2011 at 01:50:37PM +0200, Marek Szyprowski wrote: Hello, On Wednesday, June 08, 2011 10:48 PM Uwe Kleine-König wrote: I'm still

Re: vb2: about vb2_queue-queued_count

2011-06-10 Thread Uwe Kleine-König
On Fri, Jun 10, 2011 at 01:50:37PM +0200, Marek Szyprowski wrote: Hello, On Wednesday, June 08, 2011 10:48 PM Uwe Kleine-König wrote: I'm still debugging my new video overlay device driver. The current problem is again when playing back a second video. After streamoff is called

Re: [PATCH] media: vb2: reset queued_count value during queue reinitialization

2011-06-10 Thread Uwe Kleine-König
On Fri, Jun 10, 2011 at 02:04:38PM +0200, Marek Szyprowski wrote: queued_count variable was left untouched during the queue reinitialization in __vb2_queue_cancel, what might lead to mismatch between the real number of queued buffers and queued_count variable. Reported-by: Uwe Kleine-König

vb2 queue setup skipped when playing bigger video

2011-06-08 Thread Uwe Kleine-König
removing the return 0 (i.e. reverting 31901a07) seems to do the right thing for me. Thoughts? Thanks and best regards, Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from

Corrected address for Pawel [Was: vb2 queue setup skipped when playing bigger video]

2011-06-08 Thread Uwe Kleine-König
. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] Don't shortcut vb2_reqbufs in case the format changed

2011-06-08 Thread Uwe Kleine-König
Just checking for number of buffers and memory access method isn't enough because the format might have changed since the buffers were allocated and the new format might need bigger ones. This reverts commit 31901a078af29c33c736dcbf815656920e904632. Signed-off-by: Uwe Kleine-König u.kleine-koe

[PATCH] Don't shortcut vb2_reqbufs in case the format changed

2011-06-08 Thread Uwe Kleine-König
Just checking for number of buffers and memory access method isn't enough because the format might have changed since the buffers were allocated and the new format might need bigger ones. This reverts commit 31901a078af29c33c736dcbf815656920e904632. Signed-off-by: Uwe Kleine-König u.kleine-koe

Re: [PATCH] [media] V4L/videobuf2-memops: use pr_debug for debug messages

2011-06-03 Thread Uwe Kleine-König
somehow screwed up my name in the Author field more than I'm used to: $ git cat-file commit 215c52702775556f4caf5872cc84fa8810e6fc7d | grep Uwe author Uwe Kleine-König u.kleine-koe...@pengutronix.de 1306959562 -0300 Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Strange

Re: [PATCH] [media] V4L/videobuf2-memops: use pr_debug for debug messages

2011-06-03 Thread Uwe Kleine-König
Hello Mauro, On Fri, Jun 03, 2011 at 12:39:52PM -0300, Mauro Carvalho Chehab wrote: Em 03-06-2011 04:39, Uwe Kleine-König escreveu: Hello Mauro, On Wed, Jun 01, 2011 at 10:34:31PM -0300, Mauro Carvalho Chehab wrote: Hi Kyungmin, Em 01-06-2011 21:50, Kyungmin Park escreveu: Acked

[PATCH] [media] V4L/videobuf2-memops: use pr_debug for debug messages

2011-06-01 Thread Uwe Kleine-König
Otherwise they clutter the dmesg buffer even on a production kernel. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/video/videobuf2-memops.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/media/video/videobuf2-memops.c b

Re: [git:v4l-dvb/for_v2.6.40] [media] V4L: mx3_camera: select VIDEOBUF2_DMA_CONTIG instead of VIDEOBUF_DMA_CONTIG

2011-05-04 Thread Uwe Kleine-König
of VIDEOBUF_DMA_CONTIG I don't understand why I get that mail now, the corresponding commit (122af366015abc) is already in Linux' tree?? Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de

Re: [PATCH] V4L: mx3_camera: select VIDEOBUF2_DMA_CONTIG instead of VIDEOBUF_DMA_CONTIG

2011-04-18 Thread Uwe Kleine-König
Hi Guennadi, On Thu, Apr 07, 2011 at 10:50:43AM +0200, Uwe Kleine-König wrote: Since commit 379fa5d ([media] V4L: mx3_camera: convert to videobuf2) mx3_camera uses videobuf2, but that commit didn't upgrade the select resulting in the following build failure: drivers/built

Re: [PATCH] V4L: mx3_camera: select VIDEOBUF2_DMA_CONTIG instead of VIDEOBUF_DMA_CONTIG

2011-04-18 Thread Uwe Kleine-König
the repository is fully merged into Linus tree. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media

[PATCH] V4L: mx3_camera: select VIDEOBUF2_DMA_CONTIG instead of VIDEOBUF_DMA_CONTIG

2011-04-07 Thread Uwe Kleine-König
' drivers/built-in.o: In function `mx3_camera_remove': clkdev.c:(.devexit.text+0x674): undefined reference to `vb2_dma_contig_cleanup_ctx' make[2]: *** [.tmp_vmlinux1] Error 1 make[1]: *** [sub-make] Error 2 make: *** [all] Error 2 Signed-off-by: Uwe Kleine-König u.kleine

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-27 Thread Uwe Kleine-König
Hello, On Fri, Aug 27, 2010 at 02:57:59PM +0900, FUJITA Tomonori wrote: On Fri, 27 Aug 2010 07:19:07 +0200 Uwe Kleine-König u.kleine-koe...@pengutronix.de wrote: Hey, On Fri, Aug 27, 2010 at 02:00:17PM +0900, FUJITA Tomonori wrote: On Fri, 27 Aug 2010 06:41:42 +0200 Uwe Kleine

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-27 Thread Uwe Kleine-König
? That is only patches 2(?), 4 and 5 of the series? Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-26 Thread Uwe Kleine-König
patch in this thread uses a symbol DT3155_COH_FLAGS which seems misplaced in generic code and doesn't put the new functions in a header. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-26 Thread Uwe Kleine-König
309caa9cc6ff39d261264ec4ff10e29489afc8f8 as it addresses a hardware restriction. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-26 Thread Uwe Kleine-König
Hello, On Thu, Aug 26, 2010 at 07:00:24PM +0900, FUJITA Tomonori wrote: On Thu, 26 Aug 2010 11:53:11 +0200 Uwe Kleine-König u.kleine-koe...@pengutronix.de wrote: We have currently a number of boards broken in the mainline. They must be fixed for 2.6.36. I don't think

Re: [RFC][PATCH] add dma_reserve_coherent_memory()/dma_free_reserved_memory() API

2010-08-26 Thread Uwe Kleine-König
Hey, On Fri, Aug 27, 2010 at 02:00:17PM +0900, FUJITA Tomonori wrote: On Fri, 27 Aug 2010 06:41:42 +0200 Uwe Kleine-König u.kleine-koe...@pengutronix.de wrote: On Thu, Aug 26, 2010 at 07:00:24PM +0900, FUJITA Tomonori wrote: On Thu, 26 Aug 2010 11:53:11 +0200 Uwe Kleine-König u.kleine

Re: Status of the patches under review at LMML (60 patches)

2010-07-06 Thread Uwe Kleine-König
. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCHv5] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-07-01 Thread Uwe Kleine-König
has been tested on i.MX25 and i.MX27 based platforms. Signed-off-by: Baruch Siach bar...@tkos.co.il Acked-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Changes v4 - v5 Comments from Uwe Kleine-König: Enclose mx27 DMA related stuff in #ifdefs since the dma-mx1-mx2.h

Re: [PATCHv5] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-07-01 Thread Uwe Kleine-König
. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCHv4 1/3] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-06-30 Thread Uwe Kleine-König
tree, but he wants to rebase it on top of his for-2.6.35 branch, so we can sort that out, too. I will coordinate with him. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de

Re: [PATCHv4 1/3] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-06-30 Thread Uwe Kleine-König
|| CONFIG_MX2_VIDEO */ Why not use CONFIG_VIDEO_MX2 here and get rid of CONFIG_MX2_VIDEO? Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list

Re: [PATCHv4 1/3] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-06-30 Thread Uwe Kleine-König
. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCHv4 1/3] mx2_camera: Add soc_camera support for i.MX25/i.MX27

2010-06-30 Thread Uwe Kleine-König
Hello, On Wed, Jun 30, 2010 at 11:08:41AM +0200, Guennadi Liakhovetski wrote: Mauro, there's a question for you below. On Wed, 30 Jun 2010, Uwe Kleine-König wrote: Hi Guennadi, On Wed, Jun 30, 2010 at 09:20:36AM +0200, Guennadi Liakhovetski wrote: --- a/arch/arm/plat-mxc/include

[PATCH] V4L/DVB: mx1-camera: compile fix

2010-03-27 Thread Uwe Kleine-König
This fixes a regression of 7d58289 (mx1: prefix SOC specific defines with MX1_ and deprecate old names) Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- arch/arm/plat-mxc/include/mach/dma-mx1-mx2.h |8 +++- drivers/media/video/mx1_camera.c |8

[PATCH] V4L/DVB: mx1-camera: compile fix

2010-03-16 Thread Uwe Kleine-König
This is a regression of 7d58289 (mx1: prefix SOC specific defines with MX1_ and deprecate old names) Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- arch/arm/plat-mxc/include/mach/dma-mx1-mx2.h |4 +++- drivers/media/video/mx1_camera.c |8

Re: [PATCH v2] V4L/DVB: mx1-camera: compile fix

2010-03-12 Thread Uwe Kleine-König
Hello, On Fri, Mar 12, 2010 at 10:22:31AM +0100, Guennadi Liakhovetski wrote: On Fri, 5 Mar 2010, Uwe Kleine-König wrote: This is a regression of 7d58289 (mx1: prefix SOC specific defines with MX1_ and deprecate old names) Signed-off-by: Uwe Kleine-König u.kleine-koe

Re: [git:v4l-dvb/master] USB: otg Kconfig: let USB_OTG_UTILS select USB_ULPI option

2010-03-07 Thread Uwe Kleine-König
-by: Valentin Longchamp valentin.longch...@epfl.ch Acked-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Signed-off-by: Greg Kroah-Hartman gre...@suse.de drivers/usb/otg/Kconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) I wonder why I got this patch (and two others) via

[PATCH v2] V4L/DVB: mx1-camera: compile fix

2010-03-05 Thread Uwe Kleine-König
This is a regression of 7d58289 (mx1: prefix SOC specific defines with MX1_ and deprecate old names) Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- drivers/media/video/mx1_camera.c | 12 +++- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git

[PATCH] V4L/DVB: mx1-camera: compile fix

2010-03-04 Thread Uwe Kleine-König
This is a regression of 7d58289 (mx1: prefix SOC specific defines with MX1_ and deprecate old names) Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de --- Hello, this went unnoticed up to now as mx1_defconfig doesn't include support for mx1-camera. I have a patch pending

Re: [PATCH] V4L/DVB: mx1-camera: compile fix

2010-03-04 Thread Uwe Kleine-König
a nice suggestion, I will happily implement it. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | -- To unsubscribe from this list: send the line unsubscribe linux-media

[RESEND PATCH 3/5] V4L/DVB sh_mobile_ceu: don't check platform_get_irq's return value against zero

2010-01-13 Thread Uwe Kleine-König
of platform_get_irq from 0 to -ENXIO on error. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: David Vrabel dvra...@arcom.com Cc: Greg Kroah-Hartman gre...@suse.de Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Magnus Damm d

[RESEND PATCH 2/5] V4L/DVB mx1_camera: don't check platform_get_irq's return value against zero

2010-01-13 Thread Uwe Kleine-König
of platform_get_irq from 0 to -ENXIO on error. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: David Vrabel dvra...@arcom.com Cc: Greg Kroah-Hartman gre...@suse.de Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Antonio Ospite osp

[PATCH 3/7] V4L/DVB sh_mobile_ceu: don't check platform_get_irq's return value against zero

2009-12-16 Thread Uwe Kleine-König
of platform_get_irq from 0 to -ENXIO on error. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: David Vrabel dvra...@arcom.com Cc: Greg Kroah-Hartman gre...@suse.de Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Magnus Damm d

[PATCH 2/7] V4L/DVB mx1_camera: don't check platform_get_irq's return value against zero

2009-12-16 Thread Uwe Kleine-König
of platform_get_irq from 0 to -ENXIO on error. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: David Vrabel dvra...@arcom.com Cc: Greg Kroah-Hartman gre...@suse.de Cc: Mauro Carvalho Chehab mche...@infradead.org Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Antonio Ospite osp

[PATCH 36/38] move vpss_remove to .devexit.text

2009-11-24 Thread Uwe Kleine-König
The function vpss_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Hans Verkuil hverk...@xs4all.nl Cc: Laurent Pinchart laurent.pinch...@skynet.be Cc: Alexey Klimov klimov.li...@gmail.com Cc: Muralidharan

[PATCH 33/38] don't use __exit_p to wrap sh_mobile_ceu_remove

2009-11-24 Thread Uwe Kleine-König
The function sh_mobile_ceu_remove is defined using __devexit, so don't use __exit_p but __devexit_p to wrap it. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Mauro Carvalho Chehab mche...@redhat.com Cc: Guennadi Liakhovetski g.liakhovet...@gmx.de Cc: Magnus Damm d

[PATCH 34/38] move vpfe_remove to .devexit.text

2009-11-24 Thread Uwe Kleine-König
The function vpfe_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Laurent Pinchart laurent.pinch...@skynet.be Cc: Alexey Klimov klimov.li...@gmail.com Cc: Muralidharan Karicheri m-kariche...@ti.com Cc

[PATCH 35/38] move vpif_remove to .devexit.text

2009-11-24 Thread Uwe Kleine-König
The function vpif_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de Cc: Mauro Carvalho Chehab mche...@redhat.com Cc: Hans Verkuil hverk...@xs4all.nl Cc: Manjunath Hadli m...@ti.com Cc: Chaithrika U S chaithr