RE: [PATCH v3 1/8] ARM: Samsung: Add register definitions for Samsung S5P SoC camera interface

2010-07-26 Thread Kukjin Kim
Sylwester Nawrocki wrote: Add register definitions for the camera interface/video postprocessor contained in Samsung's S5P SoC series. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Reviewed-by: Pawel Osciak

Re: Linux Plumber's Conference: Call for Working Session Submissions

2010-07-26 Thread Laurent Pinchart
Hi Mauro, On Saturday 24 July 2010 22:43:35 Mauro Carvalho Chehab wrote: CFP dead line for submitting proposals to LPC/2010 is approaching. For those that intends to submit proposals for it, please do it quickly, as the official dead line is July, 26. I'm submitted a media controller

Re: how to mmap in videobuf-dma-sg.c

2010-07-26 Thread Laurent Pinchart
Hi Mauro, On Sunday 25 July 2010 19:46:49 Mauro Carvalho Chehab wrote: [snip] The current videobuf implementation has some problems. Laurent and Pawel are working on a new implementation that will likely solve such issues. Not sure if they already submitted the patches, since I just return

Re: [RFC/PATCH v2 01/10] media: Media device node support

2010-07-26 Thread Laurent Pinchart
Hi Hans, Thanks for the review. On Saturday 24 July 2010 13:59:11 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:26 Laurent Pinchart wrote: The media_devnode structure provides support for registering and unregistering character devices using a dynamic major number. Reference

Re: [RFC/PATCH v2 02/10] media: Media device

2010-07-26 Thread Laurent Pinchart
Hi Hans, On Saturday 24 July 2010 14:02:50 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:27 Laurent Pinchart wrote: The media_device structure abstracts functions common to all kind of media devices (v4l2, dvb, alsa, ...). It manages media entities and offers a userspace API to

Re: Pull request mxc

2010-07-26 Thread Sascha Hauer
[Added Guennadi, Baruch and linux-media to cc] On Mon, Jul 26, 2010 at 11:32:19AM +0100, Russell King - ARM Linux wrote: On Mon, Jul 26, 2010 at 10:28:55AM +0100, Russell King - ARM Linux wrote: On Mon, Jul 26, 2010 at 11:00:14AM +0200, Sascha Hauer wrote: 160 files changed, 6547

[PATCHv2 0/4] The Contiguous Memory Allocator

2010-07-26 Thread Michal Nazarewicz
Hello everyone, The following patchset implements a Contiguous Memory Allocator. For those who have not yet stumbled across CMA an excerpt from documentation: The Contiguous Memory Allocator (CMA) is a framework, which allows setting up a machine-specific configuration for

[PATCHv2 1/4] lib: rbtree: rb_root_init() function added

2010-07-26 Thread Michal Nazarewicz
Added a rb_root_init() function which initialises a rb_root structure as a red-black tree with at most one element. The rationale is that using rb_root_init(root, node) is more straightforward and cleaner then first initialising and empty tree followed by an insert operation. Signed-off-by:

[PATCHv2 3/4] mm: cma: Test device and application added

2010-07-26 Thread Michal Nazarewicz
This patch adds a cma misc device which lets user space use the CMA API. This device is meant for testing. A testing application is also provided. Signed-off-by: Michal Nazarewicz m.nazarew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- drivers/misc/Kconfig |8

[PATCHv2 4/4] arm: Added CMA to Aquila and Goni

2010-07-26 Thread Michal Nazarewicz
Added the CMA initialisation code to two Samsung platforms. Signed-off-by: Michal Nazarewicz m.nazarew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/mach-s5pv210/mach-aquila.c | 13 + arch/arm/mach-s5pv210/mach-goni.c | 13 + 2

[PATCH] IR/imon: remove incorrect calls to input_free_device

2010-07-26 Thread Jarod Wilson
Per Dmitry Torokhov (in a completely unrelated thread on linux-input), following input_unregister_device with an input_free_device is forbidden, the former is sufficient alone. CC: Dmitry Torokhov dmitry.torok...@gmail.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/IR/imon.c

Re: [RFC/PATCH v2 02/10] media: Media device

2010-07-26 Thread Sakari Ailus
Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:27 Laurent Pinchart wrote: The media_device structure abstracts functions common to all kind of media devices (v4l2, dvb, alsa, ...). It manages media entities and offers a userspace API to discover and configure the media device internal

Re: tm6000 bad marge staging/tm6000 into staging/all

2010-07-26 Thread Stefan Ringel
Am 25.07.2010 19:58, schrieb Mauro Carvalho Chehab: Em 25-07-2010 04:28, Stefan Ringel escreveu: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mauro, This marge are wrong! It's added double dvb led off, but my patch has only ones. raw | combined (merge: 011906d 6e5e76f) Merge branch

V4L2: avoid name conflicts in macros

2010-07-26 Thread Guennadi Liakhovetski
sd and err are too common names to be used in macros for local variables. Prefix them with an underscore to avoid name clashing. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- include/media/v4l2-device.h | 22 +++--- 1 files changed, 11 insertions(+), 11

Re: V4L2: avoid name conflicts in macros

2010-07-26 Thread Hans Verkuil
On Monday 26 July 2010 17:39:15 Guennadi Liakhovetski wrote: sd and err are too common names to be used in macros for local variables. Prefix them with an underscore to avoid name clashing. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de Good point. Acked-by: Hans Verkuil

Re: [SAMPLE v2 04/12] v4l-subdev: Add pads operations

2010-07-26 Thread Laurent Pinchart
On Friday 23 July 2010 17:56:02 Karicheri, Muralidharan wrote: Laurent, Could you explain the probe and active usage using an example such as below? Link1Link2 input sensor - ccdc - video node. Assume Link2 we can have either format 1 or format 2 for capture. Sure.

RE: [SAMPLE v2 04/12] v4l-subdev: Add pads operations

2010-07-26 Thread Karicheri, Muralidharan
Laurent, Thanks for clarifying this. I guess this will also get documented in the v4l2 specs (if not already done) as part of this patch. Murali Karicheri Software Design Engineer Texas Instruments Inc. Germantown, MD 20874 email: m-kariche...@ti.com -Original Message- From: Laurent

Re: [RFC/PATCH v2 01/10] media: Media device node support

2010-07-26 Thread Laurent Pinchart
Hi Hans, On Monday 26 July 2010 11:07:14 Laurent Pinchart wrote: Hi Hans, On Saturday 24 July 2010 13:59:11 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:26 Laurent Pinchart wrote: The media_devnode structure provides support for registering and unregistering character devices

[PATCH 0/5] Support CSI2 on SH-Mobile SoCs

2010-07-26 Thread Guennadi Liakhovetski
This patch series adds support fot the CSI2 unit on some SH-Mobile SoCs, which implement the MIPI CSI-2 bus. Thanks Guennadi --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ -- To unsubscribe from this list: send the line unsubscribe

[PATCH 1/5] V4L2: mediabus: add 12-bit Bayer and YUV420 pixel formats

2010-07-26 Thread Guennadi Liakhovetski
These formats belong to the standard format set, defined by the MIPI CSI-2 specification. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- include/media/v4l2-mediabus.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/media/v4l2-mediabus.h

[PATCH 2/5] ARM: mash-shmobile: add clock definitions for CEU and CSI2

2010-07-26 Thread Guennadi Liakhovetski
Two more clocks to be managed by the runtime PM. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- arch/arm/mach-shmobile/clock-sh7372.c |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-shmobile/clock-sh7372.c

[PATCH 3/5] V4L2: soc-camera: export soc-camera bus type for notifications

2010-07-26 Thread Guennadi Liakhovetski
Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- drivers/media/video/soc_camera.c |3 ++- include/media/soc_camera.h |3 +++ 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index

[PATCH 4/5] V4L2: soc-camera: add a MIPI CSI-2 driver for SH-Mobile platforms

2010-07-26 Thread Guennadi Liakhovetski
Some SH-Mobile SoCs implement a MIPI CSI-2 controller, that can interface to several video clients and send data to the CEU or to the Image Signal Processor. This patch implements a v4l2-subdevice driver for CSI-2 to be used within the soc-camera framework, implementing the second subdevice in

Re: [RFC/PATCH v2 06/10] media: Entities, pads and links enumeration

2010-07-26 Thread Laurent Pinchart
Hi Pete, On Thursday 22 July 2010 18:36:51 Pete Eberlein wrote: On Thu, 2010-07-22 at 17:20 +0200, Laurent Pinchart wrote: Laurent Pinchart wrote: ... diff --git a/Documentation/media-framework.txt b/Documentation/media-framework.txt index 3acc62b..16c0177 100644 ---

Re: [RFC/PATCH v2 06/10] media: Entities, pads and links enumeration

2010-07-26 Thread Laurent Pinchart
Hi Sakari, On Thursday 22 July 2010 19:30:21 Sakari Ailus wrote: Laurent Pinchart wrote: + +struct media_user_pad { + __u32 entity; /* entity ID */ + __u8 index; /* pad index */ + __u32 direction;/* pad direction */ +}; Another small comment, I

Re: [RFC/PATCH v2 06/10] media: Entities, pads and links enumeration

2010-07-26 Thread Laurent Pinchart
Hi Hans, On Saturday 24 July 2010 14:45:39 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:31 Laurent Pinchart wrote: Create the following two ioctls and implement them at the media device level to enumerate entities, pads and links. - MEDIA_IOC_ENUM_ENTITIES: Enumerate entities and

Re: [RFC/PATCH v2 03/10] media: Entities, pads and links

2010-07-26 Thread Laurent Pinchart
Hi Hans, On Saturday 24 July 2010 14:18:11 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:28 Laurent Pinchart wrote: snip diff --git a/include/media/media-entity.h b/include/media/media-entity.h new file mode 100644 index 000..fd44647 --- /dev/null +++

Re: [PATCH] IR/imon: remove incorrect calls to input_free_device

2010-07-26 Thread Dmitry Torokhov
On Mon, Jul 26, 2010 at 10:13:52AM -0400, Jarod Wilson wrote: Per Dmitry Torokhov (in a completely unrelated thread on linux-input), following input_unregister_device with an input_free_device is forbidden, the former is sufficient alone. CC: Dmitry Torokhov dmitry.torok...@gmail.com

Re: tm6000 bad marge staging/tm6000 into staging/all

2010-07-26 Thread Mauro Carvalho Chehab
Em 26-07-2010 12:17, Stefan Ringel escreveu: Am 25.07.2010 19:58, schrieb Mauro Carvalho Chehab: Em 25-07-2010 04:28, Stefan Ringel escreveu: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Mauro, This marge are wrong! It's added double dvb led off, but my patch has only ones. raw |

Re: [Q]: any DVB-S2 card which is 45MS/s capable?

2010-07-26 Thread Emmanuel
Goga777 a écrit : If someone has tested a DVB-S2 card at 45MS/s (I am interested in QPSK moslty) please speak out ;-). I dont need CI, dual tuner can be a bonus but definitely not mandatory. I already asked the question, so sorry to come back again with it, but I did not get a clear answer:

Re: [PATCH] IR/imon: remove incorrect calls to input_free_device

2010-07-26 Thread Jarod Wilson
On Mon, Jul 26, 2010 at 1:34 PM, Dmitry Torokhov dmitry.torok...@gmail.com wrote: On Mon, Jul 26, 2010 at 10:13:52AM -0400, Jarod Wilson wrote: Per Dmitry Torokhov (in a completely unrelated thread on linux-input), following input_unregister_device with an input_free_device is forbidden, the

RE: [RFC 0/8] TI TILER-DMM driver

2010-07-26 Thread Sin, David
Thanks, Santosh, for your comments. I will roll them into an RFC v2. Also, adding the media list... -David -Original Message- From: Shilimkar, Santosh Sent: Saturday, July 24, 2010 2:45 AM To: Sin, David; linux-arm-ker...@lists.arm.linux.org.uk; linux-o...@vger.kernel.org; Tony

RE: [RFC 1/8] TILER-DMM: DMM-PAT driver for TI TILER

2010-07-26 Thread Sin, David
Thanks, Russel, for your comments. I will rework the RFC and send out a v2 soon. -Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Saturday, July 24, 2010 3:09 AM To: Sin, David Cc: linux-arm-ker...@lists.arm.linux.org.uk;

RE: [RFC 3/8] TILER-DMM: Sample TCM implementation: Simple TILER Allocator

2010-07-26 Thread Sin, David
Comments acknowledged. Adding in media lists also. -David -Original Message- From: Shilimkar, Santosh Sent: Saturday, July 24, 2010 2:13 AM To: Sin, David; linux-arm-ker...@lists.arm.linux.org.uk; linux-o...@vger.kernel.org; Tony Lindgren; Russell King Cc: Kanigeri, Hari; Ohad

RE: [RFC 4/8] TILER-DMM: TILER Memory Manager interface and implementation

2010-07-26 Thread Sin, David
OK -- I will revisit this. Thanks for the explanation. -David -Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Saturday, July 24, 2010 3:01 AM To: Sin, David Cc: linux-arm-ker...@lists.arm.linux.org.uk; linux-o...@vger.kernel.org; Tony Lindgren;

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: ERRORS

2010-07-26 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:Mon Jul 26 19:05:02 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 14993:9652f85e688a git master:

Re: [SAMPLE v2 04/12] v4l-subdev: Add pads operations

2010-07-26 Thread Hans Verkuil
On Monday 26 July 2010 18:12:55 Laurent Pinchart wrote: On Friday 23 July 2010 17:56:02 Karicheri, Muralidharan wrote: Laurent, Could you explain the probe and active usage using an example such as below? Link1Link2 input sensor - ccdc - video node. Assume

RE: [RFC 0/8] TI TILER-DMM driver

2010-07-26 Thread Sin, David
Thanks for your feedback, Linus. I will incorporate an acronym list in the documentation. TCM stands for TILER container manager, which pretty much represents the interface to the logic which determines the location for a given 2-D area request. SiTA (Simple TILER algorithm) is the

Re: [SAMPLE v2 04/12] v4l-subdev: Add pads operations

2010-07-26 Thread Laurent Pinchart
Hi Hans, On Monday 26 July 2010 21:42:49 Hans Verkuil wrote: On Monday 26 July 2010 18:12:55 Laurent Pinchart wrote: On Friday 23 July 2010 17:56:02 Karicheri, Muralidharan wrote: Laurent, Could you explain the probe and active usage using an example such as below?

Re: [RFC/PATCH v2 06/10] media: Entities, pads and links enumeration

2010-07-26 Thread Hans Verkuil
On Monday 26 July 2010 18:34:42 Laurent Pinchart wrote: Hi Hans, On Saturday 24 July 2010 14:45:39 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:31 Laurent Pinchart wrote: Create the following two ioctls and implement them at the media device level to enumerate entities, pads and

Re: [RFC/PATCH v2 03/10] media: Entities, pads and links

2010-07-26 Thread Hans Verkuil
On Monday 26 July 2010 18:38:28 Laurent Pinchart wrote: Hi Hans, On Saturday 24 July 2010 14:18:11 Hans Verkuil wrote: On Wednesday 21 July 2010 16:35:28 Laurent Pinchart wrote: snip diff --git a/include/media/media-entity.h b/include/media/media-entity.h new file mode 100644

RE: [RFC 1/8] TILER-DMM: DMM-PAT driver for TI TILER

2010-07-26 Thread Sin, David
Hi Laurent, Thanks for taking the time to review. These are all very good comments and I will work on incorporating them into the next RFC version. -David -Original Message- From: Laurent Pinchart [mailto:laurent.pinch...@ideasonboard.com] Sent: Monday, July 26, 2010 3:13 AM To:

Re: [PATCHv2 2/4] mm: cma: Contiguous Memory Allocator added

2010-07-26 Thread Hans Verkuil
Hi Michal, Thanks for working on this, we definitely need something along these lines. On Monday 26 July 2010 16:40:30 Michal Nazarewicz wrote: The Contiguous Memory Allocator framework is a set of APIs for allocating physically contiguous chunks of memory. Various chips require contiguous

Re: [Q]: any DVB-S2 card which is 45MS/s capable?

2010-07-26 Thread VDR User
Look at the vp-1041 I think. -- 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 0/15] STAGING: add lirc device drivers

2010-07-26 Thread Jarod Wilson
This patch series adds the remaining lirc_foo device drivers to the staging tree. The core lirc_dev driver and lirc headers are currently merged in a v4l/dvb staging tree (which is pulled into linux-next), and are utilized by way of an IR decoder/encoder bridge plugin to ir-core. I've started

[PATCH 01/15] staging/lirc: add lirc_bt829 driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_bt829.c | 383 + 1 files changed, 383 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_bt829.c diff --git a/drivers/staging/lirc/lirc_bt829.c

[PATCH 02/15] staging/lirc: add lirc_ene0100 driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_ene0100.c | 646 +++ drivers/staging/lirc/lirc_ene0100.h | 169 + 2 files changed, 815 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_ene0100.c

[PATCH 03/15] staging/lirc: add lirc_i2c driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_i2c.c | 536 +++ 1 files changed, 536 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_i2c.c diff --git a/drivers/staging/lirc/lirc_i2c.c

[PATCH 04/15] staging/lirc: add lirc_igorplugusb driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_igorplugusb.c | 555 +++ 1 files changed, 555 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_igorplugusb.c diff --git a/drivers/staging/lirc/lirc_igorplugusb.c

[PATCH 05/15] staging/lirc: add lirc_imon driver

2010-07-26 Thread Jarod Wilson
Nb: this is a very trimmed-down lirc_imon, which only supports the oldest generation of imon devices that don't do onboard signal decoding like the most recent generation imon devices -- those are now supported by the ir-core imon driver. Signed-off-by: Jarod Wilson ja...@redhat.com ---

[PATCH 06/15] staging/lirc: add lirc_it87 driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_it87.c | 1019 ++ drivers/staging/lirc/lirc_it87.h | 116 + 2 files changed, 1135 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_it87.c create mode

[PATCH 07/15] staging/lirc: add lirc_ite8709 driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_ite8709.c | 542 +++ 1 files changed, 542 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_ite8709.c diff --git a/drivers/staging/lirc/lirc_ite8709.c

[PATCH 08/15] staging/lirc: add lirc_parallel driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_parallel.c | 705 ++ drivers/staging/lirc/lirc_parallel.h | 26 ++ 2 files changed, 731 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_parallel.c create mode

[PATCH 09/15] staging/lirc: add lirc_sasem driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_sasem.c | 933 + 1 files changed, 933 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_sasem.c diff --git a/drivers/staging/lirc/lirc_sasem.c

[PATCH 10/15] staging/lirc: add lirc_serial driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_serial.c | 1313 1 files changed, 1313 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_serial.c diff --git a/drivers/staging/lirc/lirc_serial.c

[PATCH 11/15] staging/lirc: add lirc_sir driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_sir.c | 1282 +++ 1 files changed, 1282 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_sir.c diff --git a/drivers/staging/lirc/lirc_sir.c

[PATCH 12/15] staging/lirc: add lirc_streamzap driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_streamzap.c | 821 + 1 files changed, 821 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_streamzap.c diff --git a/drivers/staging/lirc/lirc_streamzap.c

[PATCH 13/15] staging/lirc: add lirc_ttusbir driver

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_ttusbir.c | 397 +++ 1 files changed, 397 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_ttusbir.c diff --git a/drivers/staging/lirc/lirc_ttusbir.c

[PATCH 14/15] staging/lirc: add lirc_zilog driver

2010-07-26 Thread Jarod Wilson
Commonly found on several Hauppauge video capture devices. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_zilog.c | 1387 + 1 files changed, 1387 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_zilog.c

[PATCH 15/15] staging/lirc: wire up Kconfig and Makefile bits

2010-07-26 Thread Jarod Wilson
Make the bits under staging/lirc/ buildable, and add a TODO note. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/Kconfig |2 + drivers/staging/Makefile |1 + drivers/staging/lirc/Kconfig | 110 +