Re: [PATCH RFC] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Hans Verkuil
Hi Federico! A few small remarks: On Wed July 11 2012 04:34:46 Federico Vaga wrote: Signed-off-by: Federico Vaga federico.v...@gmail.com --- drivers/media/video/adv7180.c | 221 + 1 file changed, 90 insertions(+), 131 deletions(-) diff --git

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/10 Jean-Francois Moine moin...@free.fr: So, it would be interesting to know if the (almost) last driver works. Then, you may try the gspca-2.15.18.tar.gz from my web site: wget http://moinejf.free.fr/gspca-2.15.18.tar.gz tar -zxf gspca-2.15.18.tar.gz cd

Re: pctv452e

2012-07-11 Thread Marx
On 11.07.2012 01:13, Antti Palosaari wrote: All these tests shows your device is running as it should. There are errors in almost every case, they are absent in your example. Is it ok? Test VDR again to see if it breaks. VDR unfortunatelly doesn't work saying frontend 0/0 timed out while

[PATCH v2] media: mx2_camera: Don't modify non volatile parameters in try_fmt.

2012-07-11 Thread Javier Martin
--- drivers/media/video/mx2_camera.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/mx2_camera.c b/drivers/media/video/mx2_camera.c index d5355de..eda98fc 100644 --- a/drivers/media/video/mx2_camera.c +++ b/drivers/media/video/mx2_camera.c @@

[PATCH v5] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Javier Martin
Remove MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags so that the driver can negotiate with the attached sensor whether the mbus format needs convertion from UYUV to YUYV or not. --- drivers/media/video/mx2_camera.c | 28 +++- 1 file changed, 23 insertions(+), 5

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Jean-Francois Moine
On Wed, 11 Jul 2012 10:02:27 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: [snip] wget http://moinejf.free.fr/gspca-2.15.18.tar.gz tar -zxf gspca-2.15.18.tar.gz cd gspca-2.15.18 make $ LC_ALL=C make make -C

[PATCH 0/2] Add video deinterlacing support.

2012-07-11 Thread Javier Martin
[PATCH 1/2] media: Add mem2mem deinterlacing driver. [PATCH 2/2] i.MX27: Visstrim_M10: Add support for deinterlacing -- 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

Re: [PATCH 1/2] media: Add mem2mem deinterlacing driver.

2012-07-11 Thread javier Martin
Hi Hans, thank you for your comments. On 11 July 2012 11:45, Hans Verkuil hverk...@xs4all.nl wrote: Hi Javier! Thanks for the patch. On Wed 11 July 2012 10:55:03 Javier Martin wrote: Some video decoders such as tvp5150 provide separate video fields (V4L2_FIELD_SEQ_TB). This driver uses

Re: [PATCH v5] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Laurent Pinchart
Hi Javier, Thanks for the patch. On Wednesday 11 July 2012 09:56:49 Javier Martin wrote: Remove MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags so that the driver can negotiate with the attached sensor whether the mbus format needs convertion from UYUV to YUYV or not. The commit message

Re: [PATCH 1/2] media: Add mem2mem deinterlacing driver.

2012-07-11 Thread Hans Verkuil
On Wed 11 July 2012 12:02:48 javier Martin wrote: Hi Hans, thank you for your comments. On 11 July 2012 11:45, Hans Verkuil hverk...@xs4all.nl wrote: Hi Javier! Thanks for the patch. On Wed 11 July 2012 10:55:03 Javier Martin wrote: Some video decoders such as tvp5150 provide

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 10:02:27 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: [snip] wget http://moinejf.free.fr/gspca-2.15.18.tar.gz tar -zxf gspca-2.15.18.tar.gz cd gspca-2.15.18 make $

Re: [PATCH v5] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread javier Martin
Hi, On 11 July 2012 12:08, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Javier, Thanks for the patch. On Wednesday 11 July 2012 09:56:49 Javier Martin wrote: Remove MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags so that the driver can negotiate with the attached sensor

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Jean-Francois Moine
On Wed, 11 Jul 2012 13:21:55 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: I installed them. That still doesn't fix it: $ LC_ALL=C make make -C /lib/modules/3.5.0-rc6+/build M=/home/perkelix/gspca-2.15.18/build modules make[1]: Entering directory

Re: [PATCH v5] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Laurent Pinchart
Hi Javier, On Wednesday 11 July 2012 12:37:05 javier Martin wrote: On 11 July 2012 12:08, Laurent Pinchart wrote: On Wednesday 11 July 2012 09:56:49 Javier Martin wrote: Remove MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags so that the driver can negotiate with the attached sensor

[PATCH v6] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Javier Martin
Do not use MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags. The driver must negotiate with the attached sensor whether the mbus format is UYUV or YUYV and set CSICR1 configuration accordingly. Signed-off-by: Javier Martin javier.mar...@vista-silicon.com --- drivers/media/video/mx2_camera.c |

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 13:21:55 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: I installed them. That still doesn't fix it: $ LC_ALL=C make make -C /lib/modules/3.5.0-rc6+/build M=/home/perkelix/gspca-2.15.18/build modules make[1]:

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Jean-Francois Moine
On Wed, 11 Jul 2012 14:14:24 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: CC [M] /home/perkelix/gspca-2.15.18/build/ov534_9.o /home/perkelix/gspca-2.15.18/build/ov534_9.c: In function ‘sd_init’: /home/perkelix/gspca-2.15.18/build/ov534_9.c:1353:3: error: implicit declaration

[PATCH for v3.6] Fix DV_TIMINGS_CAP documentation

2012-07-11 Thread Hans Verkuil
This patch fixes the DV_TIMINGS_CAP documentation: part of it was copy-and-paste from the ENUM_DV_TIMINGS documentation. Regards, Hans Signed-off-by: Hans Verkuil hans.verk...@cisco.com diff --git a/Documentation/DocBook/media/v4l/vidioc-dv-timings-cap.xml

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 14:14:24 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: CC [M] /home/perkelix/gspca-2.15.18/build/ov534_9.o /home/perkelix/gspca-2.15.18/build/ov534_9.c: In function ‘sd_init’:

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Jonathan Nieder
Martin-Éric Racine wrote: PS: Jonathan, do you feel like investigating why arch/x86/Makefile_32.cpu wasn't included in the linux-headers-3.5.0-rc6+_3.5.0-rc6+-1_i386.deb package that was generated by the 'make deb-pkg' target? MAINTAINERS tells me that linux-kbu...@vger.kernel.org is the

[GIT PULL FOR v3.5] VIDIOC_DV_TIMINGS_CAP fixes

2012-07-11 Thread Hans Verkuil
Hi Mauro, In 3.5 the VIDIOC_DV_TIMINGS_CAP doesn't work at the moment due to a missing line in v4l2-dev.c. I hope this can still be fixed before 3.5 is released. If not, then it has to go to stable. Luckily nobody is really using this ioctl at the moment, which is why it wasn't noticed until I

Re: [PATCH v6] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Laurent Pinchart
On Wednesday 11 July 2012 13:00:19 Javier Martin wrote: Do not use MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags. The driver must negotiate with the attached sensor whether the mbus format is UYUV or YUYV and set CSICR1 configuration accordingly. Signed-off-by: Javier Martin

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Hans de Goede
Hi, On 07/11/2012 02:01 PM, Martin-Éric Racine wrote: 2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 14:14:24 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: CC [M] /home/perkelix/gspca-2.15.18/build/ov534_9.o /home/perkelix/gspca-2.15.18/build/ov534_9.c: In

Re: [PATCH RFC] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Federico Vaga
Hi Hans, Thank you for your review +static int adv7180_init_controls(struct adv7180_state *state) +{ + v4l2_ctrl_handler_init(state-ctrl_hdl, 2); 2 - 4, since there are 4 controls. It's a hint only, but it helps optimizing the internal hash data structure. Sure :) @@ -445,9

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/11 Hans de Goede hdego...@redhat.com: On 07/11/2012 02:01 PM, Martin-Éric Racine wrote: 2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 14:14:24 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: CC [M] /home/perkelix/gspca-2.15.18/build/ov534_9.o

[PATCH v1 0/2] Add new fourcc definitions and H264 codec controls

2012-07-11 Thread Arun Kumar K
This patch set adds new control and fourcc definitions which will be used by samsung s5p-mfc driver. Patch 1 adds new fourcc definitions for YCbCr and compressed formats. Patch 2 adds control definitions for new H264 encoder features. The review comments given in [1] are addressed. [1]

[PATCH v1 1/2] [media] v4l: Add fourcc definitions for new formats

2012-07-11 Thread Arun Kumar K
From: Jeongtae Park jtp.p...@samsung.com Adds the following new fourcc definitions. For multiplanar YCbCr - V4L2_PIX_FMT_NV21M - V4L2_PIX_FMT_NV12MT_16X16 and compressed formats - V4L2_PIX_FMT_H264_MVC - V4L2_PIX_FMT_VP8 Signed-off-by: Jeongtae Park

[PATCH v1 2/2] [media] v4l: Add control definitions for new H264 encoder features

2012-07-11 Thread Arun Kumar K
From: Jeongtae Park jtp.p...@samsung.com New controls are added for supporting H264 encoding features like - MVC frame packing - Flexible macroblock ordering - Arbitrary slice ordering - Hierarchial coding Signed-off-by: Jeongtae Park jtp.p...@samsung.com Signed-off-by: Naveen Krishna Chatradhi

Re: [PATCH RFC] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Hans Verkuil
On Wed 11 July 2012 15:36:25 Federico Vaga wrote: Hi Hans, Thank you for your review +static int adv7180_init_controls(struct adv7180_state *state) +{ + v4l2_ctrl_handler_init(state-ctrl_hdl, 2); 2 - 4, since there are 4 controls. It's a hint only, but it helps optimizing the

Re: [PATCH RFC] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Federico Vaga
@@ -445,9 +402,9 @@ static const struct v4l2_subdev_video_ops adv7180_video_ops = { static const struct v4l2_subdev_core_ops adv7180_core_ops = { .g_chip_ident = adv7180_g_chip_ident, .s_std = adv7180_s_std, - .queryctrl = adv7180_queryctrl, - .g_ctrl =

Re: [PATCH RFC] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Hans Verkuil
On Wed 11 July 2012 16:19:02 Federico Vaga wrote: @@ -445,9 +402,9 @@ static const struct v4l2_subdev_video_ops adv7180_video_ops = { static const struct v4l2_subdev_core_ops adv7180_core_ops = { .g_chip_ident = adv7180_g_chip_ident, .s_std = adv7180_s_std,

[PATCH 1/7] media: mmp_camera: Add V4l2 camera driver for Marvell PXA910/PXA688/PXA2128 CCIC

2012-07-11 Thread Albert Wang
This v4l2 camera driver is based on soc-camera and videobuf2 framework Support Marvell MMP Soc family TD-PXA910/MMP2-PXA688/MMP3-PXA2128 CCIC Support Dual CCIC controllers on PXA688/PXA2128 Support MIPI-CSI2 mode and DVP-Parallel mode Change-Id: I0d6156e29a278108dfb26dc1e891ca069e31666c

Add V4l2 camera driver for Marvell PXA910/PXA688/PXA2128 CCIC

2012-07-11 Thread Albert Wang
Hi, Guennadi Jonathan As we have discussed 2 months ago, we make the updated version of mmp_camera driver which based on kernel 3.4 for support Marvell MMP soc family. So could you please find time to take a look at this patch? Thank you very much! Thanks Albert Wang 86-21-61092656

[RFC] media DT bindings

2012-07-11 Thread Guennadi Liakhovetski
Hi all Background == With ARM adoption of flat Device Trees a need arises to move platform device descriptions and their data from platform files to DT. This has also to be done for media devices, e.g., video capture and output interfaces, data processing devices, camera sensors, TV

[PATCH] [media] adv7180.c: convert to v4l2 control framework

2012-07-11 Thread Federico Vaga
Signed-off-by: Federico Vaga federico.v...@gmail.com --- drivers/media/video/adv7180.c | 235 +++-- 1 file changed, 84 insertions(+), 151 deletions(-) diff --git a/drivers/media/video/adv7180.c b/drivers/media/video/adv7180.c index 174bffa..07bb550 100644 ---

[PATCH v6] media: mx2_camera: Fix mbus format handling

2012-07-11 Thread Guennadi Liakhovetski
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 From: Javier Martin javier.mar...@vista-silicon.com Do not use MX2_CAMERA_SWAP16 and MX2_CAMERA_PACK_DIR_MSB flags. The driver must negotiate with the attached sensor whether the mbus format is UYUV or YUYV and set CSICR1 configuration accordingly.

RFC: Add support for limiting hw freq seeks to a certain band

2012-07-11 Thread Hans de Goede
This patchset, which builds on top of hverkuil's bands2 branch, which adds the VIDIOC_ENUM_FREQ_BANDS API, add support for limiting hw freq seeks to one of the bands from VIDIOC_ENUM_FREQ_BANDS, or a subset there of. The first patch introduces the new API and documents its, the other patches are

[PATCH 1/5] v4l2: Add rangelow and rangehigh fields to the v4l2_hw_freq_seek struct

2012-07-11 Thread Hans de Goede
To allow apps to limit a hw-freq-seek to a specific band, for further info see the documentation this patch adds for these new fields. Signed-off-by: Hans de Goede hdego...@redhat.com --- .../DocBook/media/v4l/vidioc-s-hw-freq-seek.xml| 44 include/linux/videodev2.h

[PATCH 3/5] radio-si470x: Fix band selection

2012-07-11 Thread Hans de Goede
The mask was wrong resulting in band 0 and 1 always ending up as band 0 in the register. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/media/radio/si470x/radio-si470x.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/radio/si470x/radio-si470x.h

[PATCH 5/5] radio-si470x: Lower firmware version requirements

2012-07-11 Thread Hans de Goede
Testing with a firmware version 12 usb radio stick has shown version 12 to work fine too. Reported-by: Antti Palosaari cr...@iki.fi Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/media/radio/si470x/radio-si470x.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 4/5] radio-si470x: Add support for the new band APIs

2012-07-11 Thread Hans de Goede
Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/media/radio/si470x/radio-si470x-common.c | 215 +- drivers/media/radio/si470x/radio-si470x-i2c.c|1 + drivers/media/radio/si470x/radio-si470x-usb.c|1 + drivers/media/radio/si470x/radio-si470x.h

[PATCH 2/5] radio-si470x: restore ctrl settings after suspend/resume

2012-07-11 Thread Hans de Goede
Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/media/radio/si470x/radio-si470x-usb.c |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/media/radio/si470x/radio-si470x-usb.c b/drivers/media/radio/si470x/radio-si470x-usb.c index 40b963c..0204cf4

Re: [PATCH] V4L: soc-camera: add selection API host operations

2012-07-11 Thread Guennadi Liakhovetski
Hi Laurent On Fri, 6 Jul 2012, Laurent Pinchart wrote: Hi Guennadi, Thanks for the patch. On Friday 22 June 2012 18:40:08 Guennadi Liakhovetski wrote: Add .get_selection() and .set_selection() soc-camera host driver operations. Additionally check, that the user is not trying to change

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Jean-Francois Moine
On Wed, 11 Jul 2012 16:43:47 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: Jean-Francois, can you perhaps make a patch against my latest tree for the po / PO3130 changes in your tarbal? Noted. Hopefully, the Debian kernel team can contribute to the backporting part,

Re: [PATCH 1/5] v4l2: Add rangelow and rangehigh fields to the v4l2_hw_freq_seek struct

2012-07-11 Thread Hans Verkuil
Hi Hans, Thanks for the patch. I've CC-ed Halli as well. On Wed July 11 2012 17:47:34 Hans de Goede wrote: To allow apps to limit a hw-freq-seek to a specific band, for further info see the documentation this patch adds for these new fields. Signed-off-by: Hans de Goede hdego...@redhat.com

Re: video: USB webcam fails since kernel 3.2

2012-07-11 Thread Martin-Éric Racine
2012/7/11 Jean-Francois Moine moin...@free.fr: On Wed, 11 Jul 2012 16:43:47 +0300 Martin-Éric Racine martin-eric.rac...@iki.fi wrote: Jean-Francois, can you perhaps make a patch against my latest tree for the po / PO3130 changes in your tarbal? Noted. Hopefully, the Debian kernel

Re: [PATCH 1/5] v4l2: Add rangelow and rangehigh fields to the v4l2_hw_freq_seek struct

2012-07-11 Thread Hans de Goede
Hi Hans, On 07/11/2012 08:01 PM, Hans Verkuil wrote: Hi Hans, Thanks for the patch. I've CC-ed Halli as well. On Wed July 11 2012 17:47:34 Hans de Goede wrote: To allow apps to limit a hw-freq-seek to a specific band, for further info see the documentation this patch adds for these new

Re: [PATCH 1/5] v4l2: Add rangelow and rangehigh fields to the v4l2_hw_freq_seek struct

2012-07-11 Thread halli manjunatha
On Wed, Jul 11, 2012 at 1:01 PM, Hans Verkuil hverk...@xs4all.nl wrote: Hi Hans, Thanks for the patch. I've CC-ed Halli as well. On Wed July 11 2012 17:47:34 Hans de Goede wrote: To allow apps to limit a hw-freq-seek to a specific band, for further info see the documentation this patch

cron job: media_tree daily build: ERRORS

2012-07-11 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:Wed Jul 11 19:00:18 CEST 2012 git hash:b7e386360922a15f943b2fbe8d77a19bb86f2e6f gcc version: i686-linux-gcc

Q: FE set_property() and get_property callbacks

2012-07-11 Thread Antti Palosaari
I was playing with the DVB API LNA support and ended up looking common dvb-frontend code. There is struct dvb_frontend_ops: int (*set_property)(struct dvb_frontend* fe, struct dtv_property* tvp); int (*get_property)(struct dvb_frontend* fe, struct dtv_property* tvp); What I can see from the

Re: Make menuconfig doesn't work anymore

2012-07-11 Thread Martin Herrman
2012/7/11 VDR User user@gmail.com: Actually I got the exact same error when compiling a new 3.4.4 kernel. It always feels good to know that you're not alone ;-) I assume the api_version.patch is bad or needs to be updated. I simple just commented out the add api_version.patch line in

[PATCH] dma-fence: dma-buf synchronization

2012-07-11 Thread Rob Clark
From: Rob Clark r...@ti.com A dma-fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another device. For example, userspace can call page_flip ioctl to display the next frame of graphics after kicking the GPU but

Re: [RFC] dma-fence: dma-buf synchronization

2012-07-11 Thread Rob Clark
oh, btw, this should be an [RFC] On Wed, Jul 11, 2012 at 5:29 PM, Rob Clark rob.cl...@linaro.org wrote: From: Rob Clark r...@ti.com A dma-fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another device. For

[PATCH] mceusb: Add Twisted Melon USB IDs

2012-07-11 Thread Mark Lord
Add USB identifiers for MCE compatible I/R transceivers from Twisted Melon. Signed-off-by: Mark Lord ml...@pobox.com --- Mauro, please queue this up for inclusion in linux-3.6. Patch is also attached to bypass emailer mangling. Thanks. --- linux-3.5-rc6/drivers/media/rc/mceusb.c 2012-07-07

Re: [PATCH v2 01/01] media: gscaler: Add new driver for generic scaler

2012-07-11 Thread Sylwester Nawrocki
On 07/12/2012 12:39 AM, Sylwester Nawrocki wrote: +int gsc_hw_get_input_buf_mask_status(struct gsc_dev *dev) +{ + u32 cfg, status, bits = 0; + + cfg = readl(dev-regs + GSC_IN_BASE_ADDR_Y_MASK); return hweight32(cfg GSC_IN_BASE_ADDR_MASK); + status = cfg

Re: [PATCH] dma-fence: dma-buf synchronization

2012-07-11 Thread Maarten Lankhorst
Op 12-07-12 00:29, Rob Clark schreef: From: Rob Clark r...@ti.com A dma-fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another device. For example, userspace can call page_flip ioctl to display the next

Re: [PATCH] dma-fence: dma-buf synchronization

2012-07-11 Thread Rob Clark
On Wed, Jul 11, 2012 at 6:49 PM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: Op 12-07-12 00:29, Rob Clark schreef: From: Rob Clark r...@ti.com A dma-fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another

Re: Make menuconfig doesn't work anymore

2012-07-11 Thread VDR User
On Wed, Jul 11, 2012 at 2:30 PM, Martin Herrman martin.herr...@gmail.com wrote: Actually I got the exact same error when compiling a new 3.4.4 kernel. It always feels good to know that you're not alone ;-) Yes, it's a good thing usually! I assume the api_version.patch is bad or needs to be

[PATCH RFC] add LNA support for DVB API

2012-07-11 Thread Antti Palosaari
Signed-off-by: Antti Palosaari cr...@iki.fi --- drivers/media/dvb/dvb-core/dvb_frontend.c |5 + drivers/media/dvb/dvb-core/dvb_frontend.h |1 + include/linux/dvb/frontend.h |4 +++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git

Media system Summit

2012-07-11 Thread Mauro Carvalho Chehab
Em 11-07-2012 05:09, James Bottomley escreveu: Hi All, We have set aside the second day of the kernel summit (Tuesday 28 August) as mini-summit day. So far we have only the PCI mini summit on this day Not sure what happened (or maybe my proposal were not clear enough), but I've submitted