Re: [PATCH/RFC v3 01/11] v4l: Move the media/v4l2-mediabus.h header to include/linux

2010-10-06 Thread Laurent Pinchart
Hi Guennadi, On Tuesday 05 October 2010 17:30:21 Guennadi Liakhovetski wrote: On Tue, 5 Oct 2010, Sakari Ailus wrote: Laurent Pinchart wrote: The header defines the v4l2_mbus_framefmt structure which will be used by the V4L2 subdevs userspace API. Change the type of the

[PATCH] V4L: sh_mobile_ceu_camera: use default .get_parm() and .set_parm() operations

2010-10-06 Thread Guennadi Liakhovetski
No need to duplicate default .get_parm() and .set_parm() operations. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/sh_mobile_ceu_camera.c | 18 -- 1 files changed, 0 insertions(+), 18 deletions(-) diff --git

Re: [linux-dvb] Asus MyCinema P7131 Dual support

2010-10-06 Thread Dejan Rodiger
Hi Giorgio, Dejan, I have the exact same card: # sudo lpci -vnn 02:07.0 Multimedia controller [0480]: Philips Semiconductors SAA7131/SAA7133/SAA7135 Video Broadcast Decoder [1131:7133] (rev d1)        Subsystem: ASUSTeK Computer Inc. Device [1043:4876]        Flags: bus master, medium

Re: [RFC/PATCH v2 4/6] ARM: OMAP3: Update Camera ISP definitions for OMAP3630

2010-10-06 Thread Laurent Pinchart
Hi Sergio, On Tuesday 05 October 2010 18:09:42 Aguirre, Sergio wrote: On Tuesday, October 05, 2010 8:19 AM Laurent Pinchart wrote: From: Tuukka Toivonen tuukka.o.toivo...@nokia.com Add new/changed base address definitions and resources for OMAP3630 ISP. The OMAP3430 CSI2PHY

[GIT PATCHES FOR 2.6.37] Use modaliases to load I2C modules

2010-10-06 Thread Laurent Pinchart
Hi Mauro, The following changes since commit c8dd732fd119ce6d562d5fa82a10bbe75a376575: V4L/DVB: gspca - sonixj: Have 0c45:6130 handled by sonixj instead of sn9c102 (2010-10-01 18:14:35 -0300) are available in the git repository at: git://linuxtv.org/pinchartl/uvcvideo.git i2c-module-name

[PATCH 04/14] uvcvideo: Constify the uvc_entity_match_guid arguments

2010-10-06 Thread Laurent Pinchart
They're not modified by the function, make them const. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_ctrl.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/uvc/uvc_ctrl.c

[PATCH 01/14] uvcvideo: Fix support for Medion Akoya All-in-one PC integrated webcam

2010-10-06 Thread Laurent Pinchart
The camera requires the STREAM_NO_FID quirk. Add a corresponding entry in the device IDs list. Cc: stable.org Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_driver.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git

[PATCH 00/14] uvcvideo patches for 2.6.37

2010-10-06 Thread Laurent Pinchart
Hi everybody, Here's a bunch of uvcvideo patches for 2.6.37, including bug fixes (the first 2 patches should already be queued for 2.6.36), buggy camera workarounds, locking fixes and core driver changes. I will send a pull request on Friday. Laurent Pinchart (13): uvcvideo: Fix support for

[PATCH 03/14] uvcvideo: Blacklist more controls for Hercules Dualpix Exchange

2010-10-06 Thread Laurent Pinchart
The Hercules Dualpix Exchange (06f8:3005) camera expose an absolute zoom that is not implemented. Blacklist it. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_ctrl.c | 36 1 files changed, 28 insertions(+),

[PATCH 05/14] uvcvideo: Print query name in uvc_query_ctrl()

2010-10-06 Thread Laurent Pinchart
Instead of printing the query hex value in error messages, print its name to make the messages more readable. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_video.c | 30 +++--- 1 files changed, 27 insertions(+), 3

[PATCH 02/14] uvcvideo: Restrict frame rates for Chicony CNF7129 webcam

2010-10-06 Thread Laurent Pinchart
At all frame rates except 30fps and 5fps the camera produces very dark pictures. Auto-exposure is probably disabled by the camera at all frame rates except 30fps, making them pretty unusable. Work around the problem by introducing a new RESTRICT_FRAME_RATE quirk that disables all the frame rates

[PATCH 08/14] uvcvideo: Generate discontinuous sequence numbers when frames are lost

2010-10-06 Thread Laurent Pinchart
Increase the sequence number of the v4l2_buffer structure regardless of any buffer states, so that discontinuous sequence numbers allow applications to detect lost video frames. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_queue.c |7

[PATCH 10/14] uvcvideo: Remove sysadmin requirements for UVCIOC_CTRL_MAP

2010-10-06 Thread Laurent Pinchart
From: Martin Rubli martin_ru...@logitech.com This patch removes the sysadmin requirements for UVCIOC_CTRL_MAP (and the stub implementation of UVCIOC_CTRL_ADD). This requirement no longer makes sense with the new XU control access mechanisms since XU controls can be accessed without adding control

[PATCH 09/14] uvcvideo: Hardcode the index/selector relationship for XU controls

2010-10-06 Thread Laurent Pinchart
Devices advertise XU controls using a bitmask, in which each bit corresponds to a control. The control selector, used to query the control, isn't available in the USB descriptors. All known UVC devices use control selectors equal to the control bit index plus one. Hardcode that relationship in

[PATCH 13/14] uvcvideo: Fix bogus XU controls information

2010-10-06 Thread Laurent Pinchart
XU control information is supposed to be entirely discoverable using standard UVC queries. As some devices report bogus information (such as reporting a read-only control as being read-write), add a fixup table for XU controls. This table can also be used to selectively disable requests supposed

[PATCH 12/14] uvcvideo: Delay initialization of XU controls

2010-10-06 Thread Laurent Pinchart
XU controls initialization requires querying the device for control information. As some buggy UVC devices will crash when queried repeatedly in a tight loop, delay XU controls initialization until first use. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com ---

[PATCH 07/14] uvcvideo: Set bandwidth to at least 1024 with the FIX_BANDWIDTH quirk

2010-10-06 Thread Laurent Pinchart
The bandwidth estimate computed with the FIX_BANDIWDTH quirk is too low for many cameras. Don't use maximum packet sizes lower than 1024 bytes to try and work around the problem. According to measurements done on two different camera models, the value is high enough to get most resolutions working

[PATCH 06/14] uvcvideo: Update e-mail address and copyright notices

2010-10-06 Thread Laurent Pinchart
Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/video/uvc/uvc_ctrl.c |4 ++-- drivers/media/video/uvc/uvc_driver.c |7 --- drivers/media/video/uvc/uvc_isight.c |2 +- drivers/media/video/uvc/uvc_queue.c |4 ++--

RE: [PATCH/RFC v3 03/11] v4l: Group media bus pixel codes by types and sort them alphabetically

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Laurent Pinchart Sent: Tuesday, October 05, 2010 7:55 PM To: linux-media@vger.kernel.org Cc: sakari.ai...@maxwell.research.nokia.com Subject: [PATCH/RFC v3 03/11] v4l:

RE: [PATCH/RFC v3 04/11] v4l: Add 8-bit YUYV on 16-bit bus and SGRBG10 media bus pixel codes

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Laurent Pinchart Sent: Tuesday, October 05, 2010 7:55 PM To: linux-media@vger.kernel.org Cc: sakari.ai...@maxwell.research.nokia.com Subject: [PATCH/RFC v3 04/11]

RE: [RFC/PATCH v2 5/6] omap3: Export omap3isp platform device structure

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Aguirre, Sergio Sent: Tuesday, October 05, 2010 9:40 PM To: Laurent Pinchart; linux-media@vger.kernel.org Cc: sakari.ai...@maxwell.research.nokia.com Subject: RE:

Re: [PATCH/RFC v3 03/11] v4l: Group media bus pixel codes by types and sort them alphabetically

2010-10-06 Thread Laurent Pinchart
Hi Vaibhav, On Wednesday 06 October 2010 11:19:21 Hiremath, Vaibhav wrote: On Tuesday, October 05, 2010 7:55 PM Laurent Pinchart wrote: Adding new pixel codes at the end of the enumeration will soon create a mess, so group the pixel codes by type and sort them by bus_width, bits per

Re: [PATCH/RFC v3 04/11] v4l: Add 8-bit YUYV on 16-bit bus and SGRBG10 media bus pixel codes

2010-10-06 Thread Laurent Pinchart
Hi Vaibhav, On Wednesday 06 October 2010 11:19:25 Hiremath, Vaibhav wrote: On Tuesday, October 05, 2010 7:55 PM Laurent Pinchart wrote: Add the following media bus format code definitions: - V4L2_MBUS_FMT_SGRBG10_1X10 for 10-bit GRBG Bayer - V4L2_MBUS_FMT_SGRBG10_DPCM8_1X8 for 10-bit

RE: [PATCH/RFC v3 03/11] v4l: Group media bus pixel codes by types and sort them alphabetically

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Laurent Pinchart [mailto:laurent.pinch...@ideasonboard.com] Sent: Wednesday, October 06, 2010 3:43 PM To: Hiremath, Vaibhav Cc: linux-media@vger.kernel.org; sakari.ai...@maxwell.research.nokia.com Subject: Re: [PATCH/RFC v3 03/11] v4l: Group media bus pixel

RE: [PATCH/RFC v3 04/11] v4l: Add 8-bit YUYV on 16-bit bus and SGRBG10 media bus pixel codes

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Laurent Pinchart [mailto:laurent.pinch...@ideasonboard.com] Sent: Wednesday, October 06, 2010 3:49 PM To: Hiremath, Vaibhav Cc: linux-media@vger.kernel.org; sakari.ai...@maxwell.research.nokia.com Subject: Re: [PATCH/RFC v3 04/11] v4l: Add 8-bit YUYV on

gspca, audio and ov534: regression.

2010-10-06 Thread Antonio Ospite
Hi, with 2.6.36-rc6 I can't use the ov534 gspca subdriver (with PS3 eye) anymore, when I try to capture video in dmesg I get: gspca: no transfer endpoint found If I revert commit 35680ba I can make video capture work again but I still don't get the audio device in pulseaudio, it shows up in

[v4l/dvb] identification/ fixed registration order of DVB cards

2010-10-06 Thread Matthias Weber
Hello, we are using two identical DVB cards (TT-budget S2-1600) in one system. How can we assure that the same card always are assigned to the same device file /dev/dvb/adapter0 (/dev/dvb/adapter1 respectively). Short example: Is the card in the first PCI slot always /dev/dvb/adapter0 and

Re: gspca, audio and ov534: regression.

2010-10-06 Thread Jean-Francois Moine
On Wed, 6 Oct 2010 12:33:21 +0200 Antonio Ospite osp...@studenti.unina.it wrote: with 2.6.36-rc6 I can't use the ov534 gspca subdriver (with PS3 eye) anymore, when I try to capture video in dmesg I get: gspca: no transfer endpoint found If I revert commit 35680ba I can make video capture

Re: [linux-dvb] Asus MyCinema P7131 Dual support

2010-10-06 Thread Giorgio
Hello Hermann, 2010/10/5 hermann pitton hermann-pit...@arcor.de: Hi Giorgio, Am Montag, den 04.10.2010, 18:11 +0200 schrieb Giorgio: On 04/10/2010 01:48, Dejan Rodiger wrote: Hi Hermann, I finally found the time to wire analog antena and I checked it with my TV if it is working

Re: [linux-dvb] Asus MyCinema P7131 Dual support

2010-10-06 Thread Giorgio
2010/10/6 Dejan Rodiger dejan.rodi...@gmail.com: Hi Giorgio, Dejan, I have the exact same card: # sudo lpci -vnn 02:07.0 Multimedia controller [0480]: Philips Semiconductors SAA7131/SAA7133/SAA7135 Video Broadcast Decoder [1131:7133] (rev d1)        Subsystem: ASUSTeK Computer Inc.

Re: xc5000 and switch RF input

2010-10-06 Thread Mauro Carvalho Chehab
Em 06-10-2010 16:52, Dmitri Belimov escreveu: Hi Our TV card Behold X7 has two different RF input. This RF inputs can switch between different RF sources. ANT 1 for analog and digital TV ANT 2 for FM radio The switch controlled by zl10353. How to I can control this switch? I

[RFC] Resource reservation for frontend - Was: Re: xc5000 and switch RF input

2010-10-06 Thread Mauro Carvalho Chehab
Em 06-10-2010 16:52, Dmitri Belimov escreveu: Hi Our TV card Behold X7 has two different RF input. This RF inputs can switch between different RF sources. ANT 1 for analog and digital TV ANT 2 for FM radio The switch controlled by zl10353. How to I can control this switch? I

RE: [PATCH v2 1/2] V4L/DVB: OMAP_VOUT: Create a seperate vrfb functions library

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Taneja, Archit Sent: Monday, September 27, 2010 12:47 PM To: Hiremath, Vaibhav Cc: linux-o...@vger.kernel.org; linux-media@vger.kernel.org; Taneja, Archit Subject: [PATCH v2 1/2] V4L/DVB: OMAP_VOUT: Create a seperate vrfb functions library Create

[linux-dvb] [bug] AF9015 message WARNING: tuning failed!!!

2010-10-06 Thread Paul Gover
I've a cheap USB DVB key that won't work with Kaffeine. It identifies itself as KWorld USB DVB-T TV Stick II (VS-DVB-T 395U). It shows up on Kaffeine's Configure Television dialog, but scanning for channels finds nothing, and tuning using an old channel list gives Sorry - no available device found

Re: gspca, audio and ov534: regression.

2010-10-06 Thread Antonio Ospite
On Wed, 6 Oct 2010 13:48:55 +0200 Jean-Francois Moine moin...@free.fr wrote: On Wed, 6 Oct 2010 12:33:21 +0200 Antonio Ospite osp...@studenti.unina.it wrote: with 2.6.36-rc6 I can't use the ov534 gspca subdriver (with PS3 eye) anymore, when I try to capture video in dmesg I get: gspca:

RE: [PATCH v2 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build without VRFB

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Taneja, Archit Sent: Monday, September 27, 2010 12:47 PM To: Hiremath, Vaibhav Cc: linux-o...@vger.kernel.org; linux-media@vger.kernel.org; Taneja, Archit Subject: [PATCH v2 0/2] V4L/DVB: OMAP_VOUT: Allow omap_vout to build without VRFB This lets

RE: [PATCH v2 2/2] V4L/DVB: OMAP_VOUT: Use rotation_type to choose between vrfb and sdram buffers

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Taneja, Archit Sent: Monday, September 27, 2010 12:47 PM To: Hiremath, Vaibhav Cc: linux-o...@vger.kernel.org; linux-media@vger.kernel.org; Taneja, Archit Subject: [PATCH v2 2/2] V4L/DVB: OMAP_VOUT: Use rotation_type to choose between vrfb and sdram

Re: [RFC/PATCH v2 0/6] OMAP3 ISP driver

2010-10-06 Thread Laurent Pinchart
Hi Vaibhav, On Wednesday 06 October 2010 11:56:23 Hiremath, Vaibhav wrote: On Tuesday, October 05, 2010 6:49 PM Laurent Pinchart wrote: Hi everybody, Here's the second version of the OMAP3 ISP driver, rebased on top of the latest media controller and sub-device API patches. As

RE: [RFC/PATCH v2 0/6] OMAP3 ISP driver

2010-10-06 Thread Hiremath, Vaibhav
-Original Message- From: Laurent Pinchart [mailto:laurent.pinch...@ideasonboard.com] Sent: Wednesday, October 06, 2010 7:47 PM To: Hiremath, Vaibhav Cc: linux-media@vger.kernel.org; sakari.ai...@maxwell.research.nokia.com Subject: Re: [RFC/PATCH v2 0/6] OMAP3 ISP driver Hi

Re: gspca, audio and ov534: regression.

2010-10-06 Thread Antonio Ospite
On Wed, 6 Oct 2010 16:04:41 +0200 Antonio Ospite osp...@studenti.unina.it wrote: On Wed, 6 Oct 2010 13:48:55 +0200 Jean-Francois Moine moin...@free.fr wrote: On Wed, 6 Oct 2010 12:33:21 +0200 Antonio Ospite osp...@studenti.unina.it wrote: with 2.6.36-rc6 I can't use the ov534 gspca

Re: [v4l/dvb] identification/ fixed registration order of DVB cards

2010-10-06 Thread VDR User
Can't this be forced using udev rules? -- 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

Re: gspca, audio and ov534: regression.

2010-10-06 Thread Jean-Francois Moine
On Wed, 6 Oct 2010 16:04:41 +0200 Antonio Ospite osp...@studenti.unina.it wrote: Thanks, the following change fixes it, was this what you had in mind? diff --git a/drivers/media/video/gspca/gspca.c b/drivers/media/video/gspca/gspca.c index b984610..30e0b32 100644 ---

[cron job] v4l-dvb daily build 2.6.26 and up: ERRORS

2010-10-06 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Wed Oct 6 19:00:18 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 15164:1da5fed5c8b2 git master:

Re: [linux-dvb] [bug] AF9015 message WARNING: tuning failed!!!

2010-10-06 Thread Antti Palosaari
It is QT1010 tuner driver issue. None is working for that currently or in near future. Feel free to fix :] Antti On 10/06/2010 04:56 PM, Paul Gover wrote: I've a cheap USB DVB key that won't work with Kaffeine. It identifies itself as KWorld USB DVB-T TV Stick II (VS-DVB-T 395U). It shows up

[PATCH]UPDATE for LME2510(C) DM04/QQBOX USB DVB-S BOXES.

2010-10-06 Thread tvbox
Updated driver for DM04/QQBOX USB DVB-S BOXES to version 1.50 These include -later kill of usb_buffer to avoid kernel crash on hot unplugging. -DiSEqC functions. -LNB Power switch -Faster channel change. Signed-off-by: Malcolm Priestley tvbox...@gmail.com

Re: [PATCH] vivi: Don't depend on FONTS

2010-10-06 Thread Randy Dunlap
| - Original Message - | From: b...@decadent.org.uk | To: mche...@infradead.org | Cc: linux-media@vger.kernel.org, randy.dun...@oracle.com | Sent: Sunday, October 3, 2010 6:18:33 PM GMT -08:00 US/Canada Pacific | Subject: [PATCH] vivi: Don't depend on FONTS | | CONFIG_FONTS has nothing

Re: [linux-dvb] [bug] AF9015 message WARNING: tuning failed!!!

2010-10-06 Thread dave cunningham
In message 4cacd0f3.6030...@iki.fi, Antti Palosaari wrote It is QT1010 tuner driver issue. None is working for that currently or in near future. Feel free to fix :] The wiki appears to show this stick as working. http://linuxtv.org/wiki/index.php/Afatech_AF9015. Is this information

Re: [linux-dvb] [bug] AF9015 message WARNING: tuning failed!!!

2010-10-06 Thread Antti Palosaari
On 10/06/2010 11:36 PM, dave cunningham wrote: In message 4cacd0f3.6030...@iki.fi, Antti Palosaari wrote It is QT1010 tuner driver issue. None is working for that currently or in near future. Feel free to fix :] The wiki appears to show this stick as working.

[no subject]

2010-10-06 Thread Halim Sahin
help -- 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] video: fix potential use-before-NULL-check crash

2010-10-06 Thread Kees Cook
Moves use to after NULL-check. Signed-off-by: Kees Cook kees.c...@canonical.com --- Sent before as part of https://patchwork.kernel.org/patch/138711/ but it still hasn't been applied. --- drivers/media/video/em28xx/em28xx-video.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)

Re: [RFC] Resource reservation for frontend - Was: Re: xc5000 and switch RF input

2010-10-06 Thread Dmitri Belimov
Hi Em 06-10-2010 16:52, Dmitri Belimov escreveu: Hi Our TV card Behold X7 has two different RF input. This RF inputs can switch between different RF sources. ANT 1 for analog and digital TV ANT 2 for FM radio The switch controlled by zl10353. How to I can control this

[GIT PULL for 2.6.36-rc7] V4L/DVB fixes

2010-10-06 Thread Mauro Carvalho Chehab
Hi Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git v4l_for_linus It is basically a few fixes at V4L drivers, plus some fixes at IR core and one at V4L core (at videobuf). All the patches are available at linux-next and should compile fine.

Re: [RFC] Resource reservation for frontend - Was: Re: xc5000 and switch RF input

2010-10-06 Thread Mauro Carvalho Chehab
Em 07-10-2010 10:00, Dmitri Belimov escreveu: Hi Em 06-10-2010 16:52, Dmitri Belimov escreveu: Hi Our TV card Behold X7 has two different RF input. This RF inputs can switch between different RF sources. ANT 1 for analog and digital TV ANT 2 for FM radio The switch controlled by

Re: dm1105 scan but won't tune? [PROGRESS]

2010-10-06 Thread Simon Baxter
OK, progress (idiot error?) My problem was OptusB1 requires a 45 degree skew on the LNB on the dish itself. So now I can do an szap as follows: TV3:12456:h:0:22500:512:650:1920 ./szap -l 11300 -c channels-conf/dvb-s/OptusD1E160 TV3 reading channels from file 'channels-conf/dvb-s/OptusD1E160'

[PATCH 2/3] V4L/DVB: saa7134-input can't be a module right now

2010-10-06 Thread Mauro Carvalho Chehab
There are some symbols at saa7134-input that are used on saa7134 and vice-versa. Due to that, module install fails. So, partially revert commit 9f495cf7d691c99bf7bdcec9f35fcfdad2cf9ae9. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com diff --git a/drivers/media/video/saa7134/Kconfig

[PATCH 3/3] V4L/DVB: tm6000: Fix warnings due to a small array size

2010-10-06 Thread Mauro Carvalho Chehab
drivers/staging/tm6000/tm6000-stds.c:101: warning: excess elements in array initializer drivers/staging/tm6000/tm6000-stds.c:101: warning: (near initialization for ‘tv_stds[0].common’) drivers/staging/tm6000/tm6000-stds.c:160: warning: excess elements in array initializer

[PATCH 1/3] V4L/DVB: videobuf-dma-sg: Fix a warning due to the usage of min(PAGE_SIZE, arg)

2010-10-06 Thread Mauro Carvalho Chehab
drivers/media/video/videobuf-dma-sg.c: In function ‘videobuf_pages_to_sg’: drivers/media/video/videobuf-dma-sg.c:119: warning: comparison of distinct pointer types lacks a cast drivers/media/video/videobuf-dma-sg.c:120: warning: comparison of distinct pointer types lacks a cast Signed-off-by:

[RFC PATCH] Audio standards on tm6000

2010-10-06 Thread Mauro Carvalho Chehab
Hi Dmitri, IMO, the better is to remove the audio init from tm6000-core and add a separate per-standard set of tables. I'm enclosing the patch for it. Please check if this won't break for your device. On all tests I did here with a tm6010 device (HVR 900H), I was only able to listen to white