[PATCH] Add support for KWorld PC150-U ATSC hybrid tuner card.

2012-02-17 Thread Kyle Strickland
Signed-off-by: Kyle Strickland --- Documentation/dvb/cards.txt |1 + drivers/media/rc/keymaps/Makefile |1 + drivers/media/rc/keymaps/rc-kworld-pc150u.c | 102 +++ drivers/media/video/saa7134/saa7134-cards.c | 59 +++ driver

Re: [RFC/PATCH 3/6] V4L: Add g_embedded_data subdev callback

2012-02-17 Thread Sakari Ailus
Hi Laurent, Laurent Pinchart wrote: > On Saturday 18 February 2012 00:33:23 Sylwester Nawrocki wrote: >> On 02/18/2012 12:23 AM, Laurent Pinchart wrote: struct v4l2_subdev_video_ops { int (*s_routing)(struct v4l2_subdev *sd, u32 input, u32 output, u32 config); @@ -

Re: [RFC/PATCH 3/6] V4L: Add g_embedded_data subdev callback

2012-02-17 Thread Laurent Pinchart
Hi Sylwester, On Saturday 18 February 2012 00:33:23 Sylwester Nawrocki wrote: > On 02/18/2012 12:23 AM, Laurent Pinchart wrote: > >> struct v4l2_subdev_video_ops { > >> > >>int (*s_routing)(struct v4l2_subdev *sd, u32 input, u32 output, u32 > >> > >> config); @@ -321,6 +329,8 @@ struct v

Re: [PATCHv22 00/16] Contiguous Memory Allocator

2012-02-17 Thread Anca Emanuel
Do you have an git tree ? Now is time to include this in next. Please add "Stephen Rothwell" to CC. If you not have an git tree, ask somebody to take it NOW in a next tree. I want to see this in linux 3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a m

Re: [patch 1/2] [media] s2255drv: cleanup vidioc_enum_fmt_cap()

2012-02-17 Thread dean anderson
Thanks Dan, I can sign off on this. The check isn't required. Signed-off-by: Dean Anderson On 2/16/2012 10:43 PM, Dan Carpenter wrote: "f" wasn't checked consistently, so static checkers complain. This function is always called with a valid "f" pointer, so I have removed the check. Also th

Re: [RFC/PATCH 3/6] V4L: Add g_embedded_data subdev callback

2012-02-17 Thread Sylwester Nawrocki
Hi Laurent, On 02/18/2012 12:23 AM, Laurent Pinchart wrote: struct v4l2_subdev_video_ops { int (*s_routing)(struct v4l2_subdev *sd, u32 input, u32 output, u32 config); @@ -321,6 +329,8 @@ struct v4l2_subdev_video_ops { struct v4l2_mbus_config *cfg);

Re: OMAP CCDC with sensors that are always on...

2012-02-17 Thread Chris Whittenburg
I fixed my sensor to respect a "run" signal from the omap, so that now it only sends data when the ccdc is expecting it. This fixed my problem, and now I can capture the 640x1440 frames. At least the first one... Subsequent frames are always full of 0x55, like the ISP didn't write anything into

Re: [RFC/PATCH 3/6] V4L: Add g_embedded_data subdev callback

2012-02-17 Thread Laurent Pinchart
Hi Sylwester, Thanks for the patch. On Thursday 16 February 2012 19:23:56 Sylwester Nawrocki wrote: > The g_embedded_data callback allows the host to retrieve frame embedded > (meta) data from a certain subdev. This callback can be implemented by > an image sensor or a MIPI-CSI receiver, allowing

Re: [RFC/PATCH 1/6] V4L: Add V4L2_MBUS_FMT_VYUY_JPEG_I1_1X8 media bus format

2012-02-17 Thread Laurent Pinchart
Hi Sylwester, On Friday 17 February 2012 15:26:29 Sylwester Nawrocki wrote: > On 02/16/2012 08:46 PM, Sakari Ailus wrote: > > On Thu, Feb 16, 2012 at 07:23:54PM +0100, Sylwester Nawrocki wrote: > >> This patch adds media bus pixel code for the interleaved JPEG/YUYV image > >> format used by S5C73M

Re: [alsa-devel] tea575x-tuner improvements & use in maxiradio

2012-02-17 Thread Hans Verkuil
On Friday, February 17, 2012 21:13:40 Ondrej Zary wrote: > On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: > > On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: > > > On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: > > > > These patches improve the tea575x-tuner module to

Re: [alsa-devel] tea575x-tuner improvements & use in maxiradio

2012-02-17 Thread Ondrej Zary
On Wednesday 08 February 2012 08:29:25 Hans Verkuil wrote: > On Tuesday, February 07, 2012 23:20:19 Ondrej Zary wrote: > > On Sunday 05 February 2012 14:17:05 Hans Verkuil wrote: > > > These patches improve the tea575x-tuner module to make it up to date > > > with the latest V4L2 frameworks. > > >

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-17 Thread Adam Jackson
On 2/16/12 6:25 PM, Laurent Pinchart wrote: *** Common video mode data structure and EDID parser *** Goal: Sharing an EDID parser between DRM/KMS, FBDEV and V4L2. The DRM EDID parser is currently the most advanced implementation and will be taken as a starting point. Different su

[PATCHv22 06/16] mm: page_alloc: introduce alloc_contig_range()

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit adds the alloc_contig_range() function which tries to allocate given range of pages. It tries to migrate all already allocated pages that fall in the range thus freeing them. Once all pages in the range are freed they are removed from the buddy system thus all

[PATCHv22 05/16] mm: compaction: export some of the functions

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit exports some of the functions from compaction.c file outside of it adding their declaration into internal.h header file so that other mm related code can use them. This forced compaction.c to always be compiled (as opposed to being compiled only if CONFIG_COMP

[PATCHv22 04/16] mm: compaction: introduce isolate_freepages_range()

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit introduces isolate_freepages_range() function which generalises isolate_freepages_block() so that it can be used on arbitrary PFN ranges. isolate_freepages_block() is left with only minor changes. Signed-off-by: Michal Nazarewicz Signed-off-by: Marek Szyprow

[PATCHv22 02/16] mm: compaction: introduce isolate_migratepages_range()

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit introduces isolate_migratepages_range() function which extracts functionality from isolate_migratepages() so that it can be used on arbitrary PFN ranges. isolate_migratepages() function is implemented as a simple wrapper around isolate_migratepages_range(). S

[PATCHv22 01/16] mm: page_alloc: remove trailing whitespace

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz Signed-off-by: Michal Nazarewicz Signed-off-by: Marek Szyprowski Acked-by: Mel Gorman --- mm/page_alloc.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d2186ec..7fe7697 100644 --- a/mm/

[PATCHv22 00/16] Contiguous Memory Allocator

2012-02-17 Thread Marek Szyprowski
Hi, This is yet another update of the CMA patches. I really promise this is the last one. Previous version had been posted in a real hurry (before leaving the office for ELC trip) and I lost an important fixup patch in the final rebase. Best regards Marek Szyprowski Samsung Poland R&D Center Lin

[PATCHv22 07/16] mm: page_alloc: change fallbacks array handling

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit adds a row for MIGRATE_ISOLATE type to the fallbacks array which was missing from it. It also, changes the array traversal logic a little making MIGRATE_RESERVE an end marker. The letter change, removes the implicit MIGRATE_UNMOVABLE from the end of each row

[PATCHv22 16/16] ARM: Samsung: use CMA for 2 memory banks for s5p-mfc device

2012-02-17 Thread Marek Szyprowski
Replace custom memory bank initialization using memblock_reserve and dma_declare_coherent with a single call to CMA's dma_declare_contiguous. Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park Acked-by: Arnd Bergmann --- arch/arm/plat-s5p/dev-mfc.c | 51 ++--

[PATCHv22 15/16] ARM: integrate CMA with DMA-mapping subsystem

2012-02-17 Thread Marek Szyprowski
This patch adds support for CMA to dma-mapping subsystem for ARM architecture. By default a global CMA area is used, but specific devices are allowed to have their private memory areas if required (they can be created with dma_declare_contiguous() function during board initialisation). Contiguous

[PATCHv22 14/16] X86: integrate CMA with DMA-mapping subsystem

2012-02-17 Thread Marek Szyprowski
This patch adds support for CMA to dma-mapping subsystem for x86 architecture that uses common pci-dma/pci-nommu implementation. This allows to test CMA on KVM/QEMU and a lot of common x86 boxes. Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park CC: Michal Nazarewicz Acked-by: Arnd B

[PATCHv22 13/16] drivers: add Contiguous Memory Allocator

2012-02-17 Thread Marek Szyprowski
The Contiguous Memory Allocator is a set of helper functions for DMA mapping framework that improves allocations of contiguous memory chunks. CMA grabs memory on system boot, marks it with MIGRATE_CMA migrate type and gives back to the system. Kernel is allowed to allocate only movable pages withi

[PATCHv22 12/16] mm: trigger page reclaim in alloc_contig_range() to stabilise watermarks

2012-02-17 Thread Marek Szyprowski
alloc_contig_range() performs memory allocation so it also should keep track on keeping the correct level of memory watermarks. This commit adds a call to *_slowpath style reclaim to grab enough pages to make sure that the final collection of contiguous pages from freelists will not starve the syst

[PATCHv22 11/16] mm: extract reclaim code from __alloc_pages_direct_reclaim()

2012-02-17 Thread Marek Szyprowski
This patch extracts common reclaim code from __alloc_pages_direct_reclaim() function to separate function: __perform_reclaim() which can be later used by alloc_contig_range(). Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin Park Cc: Michal Nazarewicz Acked-by: Mel Gorman Tested-by: Rob

[PATCHv22 10/16] mm: Serialize access to min_free_kbytes

2012-02-17 Thread Marek Szyprowski
From: Mel Gorman There is a race between the min_free_kbytes sysctl, memory hotplug and transparent hugepage support enablement. Memory hotplug uses a zonelists_mutex to avoid a race when building zonelists. Reuse it to serialise watermark updates. [a.p.zijls...@chello.nl: Older patch fixed the

[PATCHv22 09/16] mm: page_isolation: MIGRATE_CMA isolation functions added

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit changes various functions that change pages and pageblocks migrate type between MIGRATE_ISOLATE and MIGRATE_MOVABLE in such a way as to allow to work with MIGRATE_CMA migrate type. Signed-off-by: Michal Nazarewicz Signed-off-by: Marek Szyprowski Reviewed-by:

[PATCHv22 08/16] mm: mmzone: MIGRATE_CMA migration type added

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz The MIGRATE_CMA migration type has two main characteristics: (i) only movable pages can be allocated from MIGRATE_CMA pageblocks and (ii) page allocator will never change migration type of MIGRATE_CMA pageblocks. This guarantees (to some degree) that page in a MIGRATE_CMA

[PATCHv22 03/16] mm: compaction: introduce map_pages()

2012-02-17 Thread Marek Szyprowski
From: Michal Nazarewicz This commit creates a map_pages() function which map pages freed using split_free_pages(). This merely moves some code from isolate_freepages() so that it can be reused in other places. Signed-off-by: Michal Nazarewicz Signed-off-by: Marek Szyprowski Acked-by: Mel Gorm

cron job: media_tree daily build: ERRORS

2012-02-17 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 Feb 17 19:00:16 CET 2012 git hash:a3db60bcf7671cc011ab4f848cbc40ff7ab52c1e gcc version: i686-linux-gcc (GCC

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-17 Thread Laurent Pinchart
Hi Sumit, On Friday 17 February 2012 16:37:35 Semwal, Sumit wrote: > On Fri, Feb 17, 2012 at 4:55 AM, Laurent Pinchart wrote: > > Hello everybody, > > > > First of all, I would like to thank all the attendees for their > > participation in the mini-summit that helped make the meeting a success.

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-17 Thread Laurent Pinchart
Hi Daniel, On Friday 17 February 2012 10:55:54 Daniel Vetter wrote: > On Fri, Feb 17, 2012 at 12:25:51AM +0100, Laurent Pinchart wrote: > > Hello everybody, > > > > First of all, I would like to thank all the attendees for their > > participation in the mini-summit that helped make the meeting a

Re: [PATCHv2 1/7] media: video: append $(srctree) to -I parameters

2012-02-17 Thread Laurent Pinchart
Hi Andy, Thanks for the patches. On Friday 17 February 2012 10:57:07 Andy Shevchenko wrote: > Without this we have got the warnings like following if build with "make W=1 > O=/var/tmp": >CHECK drivers/media/video/videobuf-vmalloc.c >CC [M] drivers/media/video/videobuf-vmalloc.o > +cc1

Re: [RFC/PATCH 1/6] V4L: Add V4L2_MBUS_FMT_VYUY_JPEG_I1_1X8 media bus format

2012-02-17 Thread Sakari Ailus
Hi Sylwester, On Fri, Feb 17, 2012 at 03:26:29PM +0100, Sylwester Nawrocki wrote: > On 02/16/2012 08:46 PM, Sakari Ailus wrote: > > On Thu, Feb 16, 2012 at 07:23:54PM +0100, Sylwester Nawrocki wrote: > >> This patch adds media bus pixel code for the interleaved JPEG/YUYV image > >> format used by

[PATCH 1/2] s5p-jpeg: Use struct v4l2_fh

2012-02-17 Thread Sylwester Nawrocki
This patch is a prerequisite for per file handle control handlers. Signed-off-by: Sylwester Nawrocki Signed-off-by: Andrzej Pietrasiewicz Signed-off-by: Kyungmin Park --- drivers/media/video/s5p-jpeg/jpeg-core.c | 65 + drivers/media/video/s5p-jpeg/jpeg-core.h |

[PATCH 2/2] s5p-jpeg: Add JPEG controls support

2012-02-17 Thread Sylwester Nawrocki
This patch replaces VIDIOC_S/G_JPEGCOMP ioctl handlers with V4L2_CID_JPEG_QUALITY control. Additionally it enables JPEG subsampling and the restart interval configuration through V4L2_CID_JPEG_SUBSAMPLING and V4L2_CID_JPEG_RESTART_INTERVAL controls. For the decoder video node only V4L2_CID_JPEG_S

[PATCH 0/2] Add support for JPEG controls in s5p-jpeg driver

2012-02-17 Thread Sylwester Nawrocki
Hello, These two patches add support for JPEG controls and remove VIDIOC_G/S_JPEGCOMP ioctl handlers in the s5p-jpeg JPEG codec driver. The relevant JPEG class patches can be found in git repository at: http://git.infradead.org/users/kmpark/linux-2.6-samsung/shortlog/refs/heads/media-for-next

Cuenta Actualiza #: Aumenta tu e-mail de cuota

2012-02-17 Thread Webmaster Administrador
Estimado titular de la cuenta de correo web, La presente es para informarle de que ha superado su dirección de e-mail límite de cuota de 100 MB y necesita aumentar su E-mail límite de cuota, porque en menos de 48 horas, su cuenta de correo electrónico se puede desactivar desde la base de datos. A

Re: [RFC/PATCH 1/6] V4L: Add V4L2_MBUS_FMT_VYUY_JPEG_I1_1X8 media bus format

2012-02-17 Thread Sylwester Nawrocki
Hi Sakari, On 02/16/2012 08:46 PM, Sakari Ailus wrote: > Hi Sylwester, > > On Thu, Feb 16, 2012 at 07:23:54PM +0100, Sylwester Nawrocki wrote: >> This patch adds media bus pixel code for the interleaved JPEG/YUYV image >> format used by S5C73MX Samsung cameras. The interleaved image data is >> tr

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-17 Thread Semwal, Sumit
Hello Laurent, Everyone: On Fri, Feb 17, 2012 at 4:55 AM, Laurent Pinchart wrote: > Hello everybody, > > First of all, I would like to thank all the attendees for their participation > in the mini-summit that helped make the meeting a success. > > ***  dma-buf Implementation in V4L2 *** > >  Go

Re: [RFC/PATCH 4/6] V4L: Add get/set_frame_config subdev callbacks

2012-02-17 Thread Sylwester Nawrocki
Hi Sakari, thanks for your comments. On 02/16/2012 11:44 PM, Sakari Ailus wrote: > Sylwester Nawrocki wrote: >> Add subdev callbacks for setting up parameters of frame on media bus that >> are not exposed to user space directly. This is more a stub containing >> only parameters needed to setup V4

[NEED INFORMATION] Any chances to get working X3M HPC2000 dvb-t tuner on linux?

2012-02-17 Thread Paweł Drobek
Hi Please let me know if there are any chances to get working X3M HPC2000 tuner on linux?. Im stuck with it on firmware loading. -- 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.ker

Re: Kernel Display and Video API Consolidation mini-summit at ELC 2012 - Notes

2012-02-17 Thread Daniel Vetter
On Fri, Feb 17, 2012 at 12:25:51AM +0100, Laurent Pinchart wrote: > Hello everybody, > > First of all, I would like to thank all the attendees for their participation > in the mini-summit that helped make the meeting a success. > > Here are my consolidated notes that cover both the Linaro Connec

Re: [PATCH 1/2] media/video mx2_camera: make using emma mandatory for i.MX27

2012-02-17 Thread Guennadi Liakhovetski
On Fri, 17 Feb 2012, Sascha Hauer wrote: > On Fri, Feb 17, 2012 at 10:24:13AM +0100, Guennadi Liakhovetski wrote: > > Hi Sascha > > > > Thanks for the patch. Just one question: > > > > On Fri, 17 Feb 2012, Sascha Hauer wrote: > > > > > The i.MX27 dma support was introduced with the initial comm

Re: [PATCH 1/2] media/video mx2_camera: make using emma mandatory for i.MX27

2012-02-17 Thread Sascha Hauer
On Fri, Feb 17, 2012 at 10:24:13AM +0100, Guennadi Liakhovetski wrote: > Hi Sascha > > Thanks for the patch. Just one question: > > On Fri, 17 Feb 2012, Sascha Hauer wrote: > > > The i.MX27 dma support was introduced with the initial commit of > > this driver and originally created by me. Howeve

Re: [PATCH 1/2] media/video mx2_camera: make using emma mandatory for i.MX27

2012-02-17 Thread Guennadi Liakhovetski
Hi Sascha Thanks for the patch. Just one question: On Fri, 17 Feb 2012, Sascha Hauer wrote: > The i.MX27 dma support was introduced with the initial commit of > this driver and originally created by me. However, I never got > this stable due to the racy dma engine and used the EMMA engine > inst

Re: [PATCH] media: video: mx2_camera: Remove ifdef's

2012-02-17 Thread Sascha Hauer
Hi Guennadi, On Thu, Feb 16, 2012 at 08:06:16PM +0100, Guennadi Liakhovetski wrote: > Hi > > On Thu, 16 Feb 2012, Baruch Siach wrote: > > > Hi Fabio, > > > > On Thu, Feb 16, 2012 at 04:25:39PM -0200, Fabio Estevam wrote: > > > As we are able to build a same kernel that supports both mx27 and mx

[PATCH 2/2] media/video mx2_camera: remove now unused code

2012-02-17 Thread Sascha Hauer
As the i.MX27 dma code was disabled in the last patch we can now remove the resulting dead code. I tried to do this as mechanically as possible as I currently have no setup to test this. Signed-off-by: Sascha Hauer --- drivers/media/video/mx2_camera.c | 225 -

[PATCH 1/2] media/video mx2_camera: make using emma mandatory for i.MX27

2012-02-17 Thread Sascha Hauer
The i.MX27 dma support was introduced with the initial commit of this driver and originally created by me. However, I never got this stable due to the racy dma engine and used the EMMA engine instead. As the DMA support is most probably unused and broken in its current state, remove it. This also h

i.MX27 camera: remove i.MX27 DMA support

2012-02-17 Thread Sascha Hauer
i.MX27 DMA support was initially introduced by me and I never got this to work properly. As this is also uses a legacy DMA API and is the source of ifdeffery in the driver, remove it. Sascha Hauer (2): media/video mx2_camera: make using emma mandatory for i.MX27 media/video mx2_camera

Re: [PATCH] media: video: mx2_camera: Remove ifdef's

2012-02-17 Thread Sascha Hauer
On Thu, Feb 16, 2012 at 04:25:39PM -0200, Fabio Estevam wrote: > As we are able to build a same kernel that supports both mx27 and mx25, we > should remove > the ifdef's for CONFIG_MACH_MX27 in the mx2_camera driver. It's not that simple. Yes, we are able to build a kernel for both i.MX25 and i.M

[PATCHv2 7/7] media: saa7134: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/video/saa7134/Makefile |8 1 files changed, 4 insert

[PATCHv2 5/7] media: ivtv: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/video/ivtv/Makefile |8 1 files changed, 4 insertion

[PATCHv2 6/7] media: saa7164: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/video/saa7164/Makefile |8 1 files changed, 4 insert

[PATCHv2 3/7] media: gspca: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/video/gspca/gl860/Makefile |2 +- drivers/media/video/gspca

[PATCHv2 2/7] media: tuners: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/common/tuners/Makefile |4 ++-- 1 files changed, 2 insertions

[PATCHv2 4/7] media: dvb: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] Signed-off-by: Andy Shevchenko --- drivers/media/dvb/dvb-usb/Makefile |7 --- drivers/media/dvb/frontend

[PATCHv2 1/7] media: video: append $(srctree) to -I parameters

2012-02-17 Thread Andy Shevchenko
Without this we have got the warnings like following if build with "make W=1 O=/var/tmp": CHECK drivers/media/video/videobuf-vmalloc.c CC [M] drivers/media/video/videobuf-vmalloc.o +cc1: warning: drivers/media/dvb/dvb-core: No such file or directory [enabled by default] +cc1: warning: d