[GIT PULL REQ] more smalll IR fixes for 3.0

2011-06-04 Thread Jarod Wilson
in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jarod/linux-2.6-ir.git/ for-3.0 Jarod Wilson (11): [media] mceusb: add and use mce_dbg printk macro [media] mceusb: support I-O Data GV-MC7/RCKIT [media] mceusb: mce_sync_in is brain-dead [staging] lirc_imon

[PATCH] [media] rc-core support for Microsoft IR keyboard/mouse

2011-06-03 Thread Jarod Wilson
in-kernel decoders than anything. I did recycle the keyboard keycode table and a few defines from lirc_mod_mce though. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/Kconfig | 11 + drivers/media/rc/Makefile |1 + drivers/media/rc/ir-mce_kbd

Re: [PATCH] [media] lirc_dev: store cdev in irctl, up maxdevs

2011-05-28 Thread Jarod Wilson
On May 28, 2011, at 4:41 PM, Andy Walls awa...@md.metrocast.net wrote: On Fri, 2011-05-27 at 16:01 -0400, Jarod Wilson wrote: Store the cdev pointer in struct irctl, allocated dynamically as needed, rather than having a static array. At the same time, recycle some of the saved memory to nudge

[PATCH] [media] nuvoton-cir: in_use isn't actually in use, remove it

2011-05-27 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/nuvoton-cir.c |2 -- drivers/media/rc/nuvoton-cir.h |1 - 2 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/media/rc/nuvoton-cir.c b/drivers/media/rc/nuvoton-cir.c index bf3060e..565f24c 100644

[PATCH] [media] mceusb: plug memory leak on data transmit

2011-05-27 Thread Jarod Wilson
that in the tx callback. CC: Hans Petter Selasky hsela...@c2i.net Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index ad927fc..124f5af 100644

[PATCH] [media] lirc_dev: store cdev in irctl, up maxdevs

2011-05-27 Thread Jarod Wilson
bridge driver, to see a system with at least 4 raw IR receivers. (consider a mythtv backend with several video capture devices and the possible need for IR transmit hardware). Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/lirc_dev.c | 33 - include

[PATCH] [media] fintek-cir: make suspend with active IR more reliable

2011-05-27 Thread Jarod Wilson
There was a missing lock in fintek_suspend. Without the lock, its possible the system will be in the middle of receiving IR (draining the RX buffer) when we try to disable CIR interrupts. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/fintek-cir.c |5 + 1 files changed

Re: [PATCH] [media] gspca/kinect: wrap gspca_debug with GSPCA_DEBUG

2011-05-26 Thread Jarod Wilson
On May 26, 2011, at 2:49 AM, jean-francois Moine wrote: On Wed, 25 May 2011 17:34:32 -0400 Jarod Wilson ja...@redhat.com wrote: diff --git a/drivers/media/video/gspca/kinect.c b/drivers/media/video/gspca/kinect.c index 66671a4..26fc206 100644 --- a/drivers/media/video/gspca/kinect.c

Re: use compile uvc_video

2011-05-26 Thread Jarod Wilson
that won't fail miserably though. Backporting newer drivers to older kernels often takes a fair bit of effort and subject matter expertise -- especially when the kernel base is as ancient as the one you're targeting. There's a reason media_build doesn't support anything that old. :) -- Jarod Wilson

Re: [patch] [media] rc: double unlock in rc_register_device()

2011-05-26 Thread Jarod Wilson
-by: Jarod Wilson ja...@redhat.com Acked-by: Jarod Wilson ja...@redhat.com -- Jarod Wilson ja...@redhat.com -- 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: [patch] [media] rc/redrat3: dereferencing null pointer

2011-05-26 Thread Jarod Wilson
Dan Carpenter wrote: In the original code, if the allocation failed we dereference rr3 when it was NULL. D'oh, yeah, thanks for the fix. Acked-by: Jarod Wilson ja...@redhat.com -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line unsubscribe linux-media

Re: use compile uvc_video

2011-05-26 Thread Jarod Wilson
changelog entries. :) -- Jarod Wilson ja...@wilsonet.com -- 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] [media] mceusb: add and use mce_dbg printk macro

2011-05-26 Thread Jarod Wilson
Using dev_dbg is more complexity than many users are able to deal with. Make it easier to get debug spew feedback from them by adding an mce_dbg printk macro that spews using dev_info when debug=1 is set for the mceusb module. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc

[PATCH] [media] mceusb: support I-O Data GV-MC7/RCKIT

2011-05-26 Thread Jarod Wilson
...@desu.ca Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index 2f1d0b7..3c4fb7d 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc

[PATCH] [media] mceusb: mce_sync_in is brain-dead

2011-05-26 Thread Jarod Wilson
to him for motivating this cleanup. Reported-by: Hans Petter Selasky hsela...@c2i.net Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c | 30 +++--- 1 files changed, 7 insertions(+), 23 deletions(-) diff --git a/drivers/media/rc/mceusb.c b/drivers

[PATCH] [media] fintek-cir: new driver for Fintek LPC SuperIO CIR function

2011-05-25 Thread Jarod Wilson
, in-kernel decode of RC6 (mce), RC5 (hauppauge) and NEC-ish (tivo) remotes all successful, as was lirc userspace decode of the RC6 remote. CC: Aaron Huang aaron_hu...@fintek.com.tw CC: Tom Tsai tom_t...@fintek.com.tw Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/Kconfig

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-05-25 Thread Jarod Wilson
On May 3, 2011, at 4:21 PM, Heiko Baums wrote: Am Tue, 3 May 2011 13:16:57 -0400 schrieb Jarod Wilson ja...@wilsonet.com: A quick look at the code suggests the 800i should indeed behave more or less the same, barring any hardware-specific implementation differences. Sure, might as well

[PATCH] [media] gspca/kinect: wrap gspca_debug with GSPCA_DEBUG

2011-05-25 Thread Jarod Wilson
] /home/jarod/src/media_build/v4l/gspca_kinect.ko ... profit Reported-by: Nicolas Will n...@youplala.net Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/video/gspca/kinect.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/gspca/kinect.c b

Re: build errors on kinect and rc-main - 2.6.38 (mipi-csis not rc-main)

2011-05-25 Thread Jarod Wilson
into media_build shortly, I hope... -- Jarod Wilson ja...@wilsonet.com -- 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: build errors on kinect and rc-main - 2.6.38 (mipi-csis not rc-main)

2011-05-25 Thread Jarod Wilson
On May 25, 2011, at 5:41 PM, Jarod Wilson wrote: On May 25, 2011, at 3:01 AM, Nicolas WILL wrote: On Wed, 2011-05-25 at 07:43 +0100, Nicolas WILL wrote: The second one is on rc-main (I probably need that!): CC [M] /home/nico/src/media_build/v4l/rc-main.o /home/nico/src/media_build/v4l

[GIT PULL REQ] Initial IR updates for 2.6.40

2011-05-20 Thread Jarod Wilson
-ir.git/ for-2.6.40 Devin Heitmueller (1): [media] saa7134: enable IR support for Hauppauge HVR-1150/1120 Jarod Wilson (9): [media] nuvoton-cir: minor tweaks to rc dev init [media] imon: clean up disconnect routine [media] ite-cir: make IR receive work after resume

[PATCH] [media] redrat3: new rc-core IR transceiver device driver

2011-05-13 Thread Jarod Wilson
. Easily changed out by way of ir-keytable and irrelevant if you're using lircd for decode. CC: Chris Dodge ch...@redrat.co.uk CC: Andrew Vincer andrew.vin...@redrat.co.uk CC: Stephen Cox scox...@yahoo.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/Kconfig | 11 + drivers

Re: IR remote control autorepeat / evdev

2011-05-12 Thread Jarod Wilson
devices by way of prodding in /sys/class/rc/, but I'm assuming that means every client would have to grow insight into how to do the same. -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org

[PATCH] [media] rc: add locking to fix register/show race

2011-05-11 Thread Jarod Wilson
, it was someone on #lirc on freenode that pastebinned it, driver was mceusb in that case). CC: sta...@kernel.org Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/rc-main.c | 47 ++- include/media/rc-core.h|7 - 2 files changed, 46

Re: IR remote control autorepeat / evdev

2011-05-11 Thread Jarod Wilson
. Acked-by: Jarod Wilson ja...@redhat.com -- Jarod Wilson ja...@wilsonet.com -- 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] [media] ite-cir: make IR receive work after resume

2011-05-09 Thread Jarod Wilson
in the nuvoton-cir driver. I've not tested with any other ITE variant, but code inspection suggests this should be safe on all variants. Reported-by: Stephan Raue sr...@openelec.tv CC: Juan Jesús García de Soria skanda...@gmail.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc

Re: [PATCH] [media] ite-cir: make IR receive work after resume

2011-05-09 Thread Jarod Wilson
Jarod Wilson wrote: Just recently acquired an Asus Eee Box PC with an onboard IR receiver driven by ite-cir (ITE8713 sub-variant). Works out of the box with the ite-cir driver in 2.6.39, but stops working after a suspend/resume cycle. Its fixed by simply reinitializing registers after resume

[PATCH v2] [media] ite-cir: make IR receive work after resume

2011-05-09 Thread Jarod Wilson
in the nuvoton-cir driver. I've not tested with any other ITE variant, but code inspection suggests this should be safe on all variants. Reported-by: Stephan Raue sr...@openelec.tv CC: Juan Jesús García de Soria skanda...@gmail.com Signed-off-by: Jarod Wilson ja...@redhat.com --- v2: fix copy/paste

Re: [PATCH] [media] ite-cir: make IR receive work after resume

2011-05-09 Thread Jarod Wilson
a wait_event_interruptible on tx_ended in the suspend path if dev-transmitting to let tx finish before we suspend. Then in resume, we're never resuming in the middle of tx and the whole conditional goes away. -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line unsubscribe linux

[PATCH] [media] ite-cir: finish tx before suspending

2011-05-09 Thread Jarod Wilson
can't be transmitting on resume, and reinitialization of the hardware registers becomes more straight-forward. CC: Juan Jesús García de Soria skanda...@gmail.com Signed-off-by: Jarod Wilson ja...@redhat.com --- Nb: this patch relies upon my earlier patch to add the init_hardware calls to the resume

Re: [PATCH] [media] ite-cir: finish tx before suspending

2011-05-09 Thread Jarod Wilson
Jarod Wilson wrote: Continuing with IR transmit after resuming from suspend seems fairly useless, given that the only place we can actually end up suspending is after IR has been send and we're simply mdelay'ing. Lets simplify the resume path by just waiting on tx to complete in the suspend path

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-05-03 Thread Jarod Wilson
. The second probably requires someone with the hardware to dig into its IR handling routines in the kernel. (I haven't got the hardware). -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-05-03 Thread Jarod Wilson
On May 3, 2011, at 11:47 AM, Devin Heitmueller wrote: On Tue, May 3, 2011 at 11:40 AM, Jarod Wilson ja...@wilsonet.com wrote: So there are really two issues here. First up, the default keymap isn't correct for this device, and second, the behavior of the hardware and/or driver is terrible

Re: [PATCH] Fix cx88 remote control input

2011-05-03 Thread Jarod Wilson
; break; case CX88_BOARD_WINFAST_DTV2000H: Signed off by: Lawrence Rust lvr at softsystem dot co dot uk ACK on this part for the 2.6.38.y stable tree. -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-05-03 Thread Jarod Wilson
On May 3, 2011, at 4:34 PM, Devin Heitmueller wrote: On Tue, May 3, 2011 at 4:21 PM, Heiko Baums li...@baums-on-web.de wrote: Am Tue, 3 May 2011 13:16:57 -0400 schrieb Jarod Wilson ja...@wilsonet.com: A quick look at the code suggests the 800i should indeed behave more or less the same

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-05-03 Thread Jarod Wilson
On May 3, 2011, at 5:52 PM, Devin Heitmueller wrote: On Tue, May 3, 2011 at 4:46 PM, Jarod Wilson ja...@wilsonet.com wrote: Yeah, good to have confirmation its got the same issue (and that it doesn't appear to be a simple case of flat batteries) Jarod, send me your mailing address off-list

[GIT PULL REQ] Late-breaking IR fixes for 2.6.39

2011-04-28 Thread Jarod Wilson
/pub/scm/linux/kernel/git/jarod/linux-2.6-ir.git/ for-2.6.39 Jarod Wilson (4): [media] mceusb: add Dell transceiver ID [media] ite-cir: modular build on ppc requires delay.h include [media] rc: show RC_TYPE_OTHER in sysfs [media] imon: add conditional locking

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-04-27 Thread Jarod Wilson
Moving this over to linux-media, this stuff is all rc-core and is more of what I meant should be discussed over here/there. :) On Apr 27, 2011, at 9:16 AM, Heiko Baums wrote: Am Wed, 27 Apr 2011 00:28:40 -0400 schrieb Jarod Wilson ja...@wilsonet.com: Setting it as the only active protocol

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-04-27 Thread Jarod Wilson
On Apr 27, 2011, at 2:47 PM, Heiko Baums wrote: Am Wed, 27 Apr 2011 14:28:41 -0400 schrieb Jarod Wilson ja...@wilsonet.com: ... Hrm, ok, so *something* is resulting in scancodes... This is progress! (I think...) :) I'm not too optimistic. ;-) Heh, we'll get there... This is one line

Re: Terratec Cinergy 1400 DVB-T RC not working anymore

2011-04-27 Thread Jarod Wilson
On Apr 27, 2011, at 3:19 PM, Jarod Wilson wrote: On Apr 27, 2011, at 2:47 PM, Heiko Baums wrote: Am Wed, 27 Apr 2011 14:28:41 -0400 schrieb Jarod Wilson ja...@wilsonet.com: ... Hrm, ok, so *something* is resulting in scancodes... This is progress! (I think...) :) I'm not too optimistic

Re: imon: spews to dmesg

2011-04-19 Thread Jarod Wilson
Dec 1 23:52:12 UTC 2010 i686 GNU/Linux $ modinfo imon filename: /lib/modules/2.6.32-27-generic/kernel/drivers/media/rc/imon.ko license:GPL version:0.9.2 description:Driver for SoundGraph iMON MultiMedia IR/Display author: Jarod Wilson ja...@wilsonet.com

[GIT PULL REQ] IR additions and misc media fixes for 2.6.40

2011-04-19 Thread Jarod Wilson
changes since commit f2dae48f7f0888fdfb978677ab0d03af468c2218: [media] gspca - kinect: New subdriver for Microsoft Kinect (2011-04-19 17:24:56 -0300) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jarod/linux-2.6-ir.git linuxtv-dev Jarod Wilson (10

[PATCH 2/2 v2] [media] rc/nuvoton-cir: enable CIR on w83667hg chip variant

2011-04-13 Thread Jarod Wilson
place on this hardware, so we only poke register 0x27 on 677 hardware now, and we poke register 0x2c on the 667 now. Reported-by: Douglas Clowes dclow...@optusnet.com.au Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/nuvoton-cir.c | 22 -- drivers/media/rc

Re: cx231xx: add support for Kworld..

2011-04-12 Thread Jarod Wilson
4 You should add to the end of the list, as device 12, not move an already existing device. Those two minor nits aside, the patch looks sane. -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord

[PATCH v2] tm6000: fix vbuf may be used uninitialized

2011-04-12 Thread Jarod Wilson
Carpenter erro...@gmail.com CC: Dmitri Belimov d.beli...@gmail.com CC: de...@driverdev.osuosl.org Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/tm6000/tm6000-video.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-video.c

[RFC PATCH] input: add KEY_IMAGES specifically for AL Image Browser

2011-04-12 Thread Jarod Wilson
into 2.6.39, and the rest can then get queued up for 2.6.40, avoiding any multi-tree integration headaches. CC: Dmitry Torokhov dmitry.torok...@gmail.com CC: Jiri Kosina jkos...@suse.cz CC: Linux Media linux-media@vger.kernel.org Signed-off-by: Jarod Wilson ja...@redhat.com --- include/linux/input.h

[PATCH 0/2] [media] nuvoton-cir: support more hardware variants

2011-04-12 Thread Jarod Wilson
There are some additional Nuvoton LPC Super I/O chips that report the PNP device ID the nuvoton-cir driver binds to, and we *should* be able to support them all. This gets us closer... Jarod Wilson (2): [media] rc/nuvoton-cir: only warn about unknown chips [media] rc/nuvoton-cir: enable CIR

[PATCH 1/2] [media] rc/nuvoton-cir: only warn about unknown chips

2011-04-12 Thread Jarod Wilson
-by: Lutz Sammer john...@gmx.net Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/nuvoton-cir.c | 40 drivers/media/rc/nuvoton-cir.h | 10 +++--- 2 files changed, 39 insertions(+), 11 deletions(-) diff --git a/drivers/media/rc/nuvoton

[PATCH 2/2] [media] rc/nuvoton-cir: enable CIR on w83667hg chip variant

2011-04-12 Thread Jarod Wilson
of the box, and the relevant bits of register 0x2c have a completely different meaning, so we only poke them on the 667. Reported-by: Douglas Clowes dclow...@optusnet.com.au Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/nuvoton-cir.c | 11 +++ drivers/media/rc/nuvoton-cir.h

Re: [RFC PATCH] input: add KEY_IMAGES specifically for AL Image Browser

2011-04-12 Thread Jarod Wilson
of the comments next to keys actually started making sense... :) So I'm fine with either AL or Launch, but if we opt for the latter, it might be good to change the rest of the comments to match. -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line unsubscribe linux-media

Re: [RFC PATCH] input: add KEY_IMAGES specifically for AL Image Browser

2011-04-12 Thread Jarod Wilson
Dmitry Torokhov wrote: On Tuesday, April 12, 2011 02:00:53 PM Jarod Wilson wrote: Andy Walls wrote: Jarod Wilsonja...@redhat.com wrote: Many media center remotes have buttons intended for jumping straight to one type of media browser or another -- commonly, images/photos/pictures, audio

Re: [PATCH] tm6000: fix vbuf may be used uninitialized

2011-04-11 Thread Jarod Wilson
On Mar 24, 2011, at 6:05 PM, Jarod Wilson wrote: On Thu, Mar 24, 2011 at 11:31:08PM +0300, Dan Carpenter wrote: On Thu, Mar 24, 2011 at 04:07:00PM -0400, Jarod Wilson wrote: Signed-off-by: Jarod Wilson ja...@redhat.com Jarod, there is a lot of information missing from your change log

Re: [PATCH] Fix cx88 remote control input

2011-04-09 Thread Jarod Wilson
On Apr 8, 2011, at 4:50 PM, Andy Walls wrote: Jarod Wilson ja...@wilsonet.com wrote: ... I have quite a few pieces of Hauppauge hardware, several with IR receivers and remotes, but all of which use ir-kbd-i2c (or lirc_zilog), i.e., none of which pass along raw IR. You don't have an HVR-950

Re: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
the question why this change was made as it is of no apparent benefit and could have unanticipated consequences. IMHO that change should also be reverted unless there is evidence to substantiate it. Signed off by: Lawrence Rust lvr at softsystem dot co dot uk Nacked-by: Jarod Wilson ja...@redhat.com

Re: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
. :) -- Jarod Wilson ja...@wilsonet.com -- 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: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
On Apr 8, 2011, at 11:22 AM, Lawrence Rust wrote: On Fri, 2011-04-08 at 10:41 -0400, Jarod Wilson wrote: On Apr 8, 2011, at 8:50 AM, Lawrence Rust wrote: This patch restores remote control input for cx2388x based boards on Linux kernels = 2.6.38. After upgrading from Linux 2.6.37

Re: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
On Apr 8, 2011, at 1:07 PM, Devin Heitmueller wrote: On Fri, Apr 8, 2011 at 12:21 PM, Jarod Wilson ja...@wilsonet.com wrote: The problem is that there isn't a the keytable. There are many many keytables. And a lot of different hardware. Testing all possible combinations of hardware (both

Re: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
On Apr 8, 2011, at 12:50 PM, Lawrence Rust wrote: On Fri, 2011-04-08 at 12:21 -0400, Jarod Wilson wrote: On Apr 8, 2011, at 11:22 AM, Lawrence Rust wrote: On Fri, 2011-04-08 at 10:41 -0400, Jarod Wilson wrote: On Apr 8, 2011, at 8:50 AM, Lawrence Rust wrote: This patch restores remote

Re: [PATCH] Fix cx88 remote control input

2011-04-08 Thread Jarod Wilson
working these days (modulo some quirks with the HD-PVR that still need sorting, but they're not regressions, its actually better now than it used to be). So yeah, I guess I have a gap in my IR hardware collection here, and would be happy to have something to fill it. -- Jarod Wilson ja

Re: [PATCH 6/6] [media] pvrusb2: replace !0 with 1

2011-03-28 Thread Jarod Wilson
) net PGP: 03 54 43 4D 75 E5 CC 92 71 16 01 E2 B5 F5 C1 E8 -- 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 -- Jarod Wilson ja...@wilsonet.com

[PATCH 1/2] rc: add tivo/nero liquidtv keymap

2011-03-24 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/keymaps/Makefile |1 + drivers/media/rc/keymaps/rc-tivo.c | 98 include/media/rc-map.h |1 + 3 files changed, 100 insertions(+), 0 deletions(-) create mode 100644 drivers

[PATCH 2/2] mceusb: tivo transceiver should default to tivo keymap

2011-03-24 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index 044fb7a..0d6ca2b 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc

[PATCH] drx397xD: remove unused DEBUG define

2011-03-24 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/dvb/frontends/drx397xD.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/frontends/drx397xD.c b/drivers/media/dvb/frontends/drx397xD.c index a05007c..235ac72 100644 --- a/drivers/media/dvb

[PATCH] tm6000: fix vbuf may be used uninitialized

2011-03-24 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com CC: de...@driverdev.osuosl.org --- drivers/staging/tm6000/tm6000-video.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c index c80a316..bfebedd

[PATCH] ttusb-budget: driver has a debug param, use it

2011-03-24 Thread Jarod Wilson
Remove DEBUG define, key debug spew off of the module's debug param that already exists. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | 60 +--- 1 files changed, 27 insertions(+), 33 deletions(-) diff --git a/drivers/media

[PATCH] lirc_sasem: key debug spew off debug modparam

2011-03-24 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_sasem.c | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/staging/lirc/lirc_sasem.c b/drivers/staging/lirc/lirc_sasem.c index 63a438d..7080cde 100644 --- a/drivers/staging/lirc

Re: [PATCH] tm6000: fix vbuf may be used uninitialized

2011-03-24 Thread Jarod Wilson
On Thu, Mar 24, 2011 at 11:31:08PM +0300, Dan Carpenter wrote: On Thu, Mar 24, 2011 at 04:07:00PM -0400, Jarod Wilson wrote: Signed-off-by: Jarod Wilson ja...@redhat.com Jarod, there is a lot of information missing from your change log... :/ Hrm, I'm building the media stack with all

[GIT PULL] IR Updates for 2.6.39

2011-03-22 Thread Jarod Wilson
in ir_probe() lirc_zilog: Update TODO list based on work completed and revised plans Jarod Wilson (9): docs: fix typo in lirc_device_interface.xml imon: add more panel scancode mappings hdpvr: i2c master enhancements ir-kbd-i2c: pass device code w/key in hauppauge case

Re: [PATCH 5/6] lirc_zilog: error out if buffer read bytes != chunk size

2011-03-17 Thread Jarod Wilson
On Wed, Mar 16, 2011 at 08:07:22PM -0400, Andy Walls wrote: On Wed, 2011-03-16 at 16:24 -0400, Jarod Wilson wrote: Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_zilog.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers

Re: [PATCH 5/6] lirc_zilog: error out if buffer read bytes != chunk size

2011-03-17 Thread Jarod Wilson
On Thu, Mar 17, 2011 at 11:29:08AM -0400, Andy Walls wrote: Jarod Wilson ja...@redhat.com wrote: On Wed, Mar 16, 2011 at 08:07:22PM -0400, Andy Walls wrote: On Wed, 2011-03-16 at 16:24 -0400, Jarod Wilson wrote: Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc

Re: [PATCH 5/6] lirc_zilog: error out if buffer read bytes != chunk size

2011-03-17 Thread Jarod Wilson
On Thu, Mar 17, 2011 at 12:16:31PM -0400, Andy Walls wrote: Jarod Wilson ja...@redhat.com wrote: On Thu, Mar 17, 2011 at 11:29:08AM -0400, Andy Walls wrote: Jarod Wilson ja...@redhat.com wrote: On Wed, Mar 16, 2011 at 08:07:22PM -0400, Andy Walls wrote: On Wed, 2011-03-16 at 16:24

[PATCH 2/2] lirc: remove staging lirc_it87 and lirc_ite8709 drivers

2011-03-16 Thread Jarod Wilson
From: Juan J. Garcia de Soria skanda...@gmail.com Remove older drivers lirc_it87 and lirc_ite8709 from the LIRC staging area, since they're now superceded by ite-cir. Signed-off-by: Juan J. Garcia de Soria skanda...@gmail.com Tested-by: Stephan Raue step...@openelec.tv Signed-off-by: Jarod

[PATCH 1/2] hdpvr: i2c master enhancements

2011-03-16 Thread Jarod Wilson
Make the hdpvr's i2c master implementation more closely mirror that of the pvrusb2 driver. Currently makes no significant difference in IR reception behavior with ir-kbd-i2c (i.e., it still sucks). Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/video/hdpvr/hdpvr-i2c.c | 67

[PATCH 2/2] hdpvr: use same polling interval as other OS

2011-03-16 Thread Jarod Wilson
The hdpvr's IR part, in short, sucks. As observed with a usb traffic sniffer, the Windows software for it uses a polling interval of 405ms. Its still not behaving as well as I'd like even with this change, but this inches us closer and closer to that point... Signed-off-by: Jarod Wilson ja

[PATCH 0/6] media: trivial IR fixes

2011-03-16 Thread Jarod Wilson
which has an older kfifo implementation (there will be a media_build patch to cope, when I get around to it). Jarod Wilson (6): docs: fix typo in lirc_device_interface.xml imon: add more panel scancode mappings ir-kbd-i2c: pass device code w/key in hauppauge case lirc: silence some compile

[PATCH 1/6] docs: fix typo in lirc_device_interface.xml

2011-03-16 Thread Jarod Wilson
Reported-by: Daniel Burr db...@topcon.com Signed-off-by: Jarod Wilson ja...@redhat.com --- .../DocBook/v4l/lirc_device_interface.xml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Documentation/DocBook/v4l/lirc_device_interface.xml b/Documentation/DocBook/v4l

[PATCH 2/6] imon: add more panel scancode mappings

2011-03-16 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/imon.c | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c index e7dc6b4..f714e1a 100644 --- a/drivers/media/rc/imon.c +++ b/drivers/media/rc/imon.c

[PATCH 3/6] ir-kbd-i2c: pass device code w/key in hauppauge case

2011-03-16 Thread Jarod Wilson
The new hauppauge key tables use both device code button code. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/video/ir-kbd-i2c.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index

[PATCH 4/6] lirc: silence some compile warnings

2011-03-16 Thread Jarod Wilson
Both lirc_imon and lirc_sasem were causing gcc to complain about the possible use of uninitialized variables. Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_imon.c |2 +- drivers/staging/lirc/lirc_sasem.c |2 +- 2 files changed, 2 insertions(+), 2 deletions

[PATCH 5/6] lirc_zilog: error out if buffer read bytes != chunk size

2011-03-16 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/staging/lirc/lirc_zilog.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/staging/lirc/lirc_zilog.c b/drivers/staging/lirc/lirc_zilog.c index 407d4b4..5ada643 100644 --- a/drivers/staging/lirc

[PATCH 6/6] mceusb: topseed 0x0011 needs gen3 init for tx to work

2011-03-16 Thread Jarod Wilson
Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index eedefce..044fb7a 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc/mceusb.c

Re: WinTV 1400 broken with recent versions?

2011-03-12 Thread Jarod Wilson
, but admittedly, it sits unused most of the time, so it had been several months since I last tried it before about a week ago... (Got it for my thinkpad, planning to just leave it plugged in all the time, until finding out it stuck out a good inch from the side of the machine). -- Jarod Wilson

Re: mygica hdcap

2011-03-10 Thread Jarod Wilson
-- Jarod Wilson ja...@wilsonet.com -- 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: WinTV 1400 broken with recent versions?

2011-03-09 Thread Jarod Wilson
. This may already be fixed, just not in 2.6.37.x yet. Can you give 2.6.38-rc8 (or later) a try and/or the media_build bits? http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_Device_Drivers -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send

Re: NCT 677x lirc driver for Asrock 330HT and others

2011-03-07 Thread Jarod Wilson
an Asrock ION 330HT provided to me by Nuvoton, and it works fantastically well. -- Jarod Wilson ja...@wilsonet.com -- 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: Compiling v4l fatal error: linux/ti_wilink_st.h: No such file or directory

2011-03-07 Thread Jarod Wilson
/. http://git.linuxtv.org/media_build.git?a=commitdiff;h=bb1da6b26bc9d44182ec0cfd9ed2b0e04e3cbec0 -- Jarod Wilson ja...@wilsonet.com -- 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

Re: Compiling v4l fatal error: linux/ti_wilink_st.h: No such file or directory

2011-03-07 Thread Jarod Wilson
makes it so that will happen, but it hasn't yet. I suspect it'll get updated soon though. If you're impatient, just clone media_tree and within media_build/linux, do a 'make tar DIR=path/to/media_tree' and you can create your own. Mar 7, 2011 at 3:57 PM, Jarod Wilson ja...@wilsonet.com wrote

Re: [PATCH 0/13] lirc_zilog: Ref-counting and locking cleanup

2011-03-05 Thread Jarod Wilson
fixes for 2.6.39 to have Mauro pull. So for the set: Acked-by: Jarod Wilson ja...@redhat.com -- Jarod Wilson ja...@wilsonet.com -- 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

Re: Hauppauge grey remote not working in recent kernels

2011-03-02 Thread Jarod Wilson
in working order. -- Jarod Wilson ja...@wilsonet.com -- 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: Hauppauge grey remote not working in recent kernels

2011-03-02 Thread Jarod Wilson
On Mar 2, 2011, at 3:46 PM, Tony Houghton wrote: On Wed, 2 Mar 2011 13:39:32 -0500 Jarod Wilson ja...@wilsonet.com wrote: On Mar 2, 2011, at 1:14 PM, Tony Houghton wrote: Since upgrading my kernel from 2.6.32 to 2.6.37 in Debian my DVB remote control no longer works. The card

[PATCH] nuvoton-cir: fix wake from suspend

2011-03-01 Thread Jarod Wilson
and testing done by Dave Treacy by way of the lirc mailing list. Reported-by: Dave Treacy davetre...@gmail.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/nuvoton-cir.c |5 +++-- drivers/media/rc/nuvoton-cir.h |7 +-- 2 files changed, 8 insertions(+), 4 deletions

[PATCH] mceusb: don't claim multifunction device non-IR parts

2011-03-01 Thread Jarod Wilson
-free with the six mceusb devices I have myself. Reported-by: Patrick Boettcher pboettc...@kernellabs.com Reported-by: Lucian Muresan luci...@users.sourceforge.net Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers/media/rc/mceusb.c | 27 +++ 1 files changed, 15

[PATCH] tda829x: fix regression in probe functions

2011-03-01 Thread Jarod Wilson
. Special thanks to Ken Bass for reporting the issue in the first place, and to both he and Gary Buhrmaster for aiding in debugging and analysis of the problem. Reported-by: Ken Bass kb...@kenbass.com Tested-by: Jarod Wilson ja...@redhat.com Signed-off-by: Jarod Wilson ja...@redhat.com --- drivers

Re: MCEUSB: falsly claims mass storage device

2011-03-01 Thread Jarod Wilson
On Feb 28, 2011, at 5:34 PM, Jarod Wilson wrote: On Feb 17, 2011, at 6:46 AM, Lucian Muresan wrote: On 09.02.2011 06:19, Jarod Wilson wrote: [...] Looks like bInterfaceNumber == 2 on this device. The patch to handle this similar to the conexant polaris devices should be pretty trivial

Re: MCEUSB: falsly claims mass storage device

2011-02-28 Thread Jarod Wilson
On Feb 17, 2011, at 6:46 AM, Lucian Muresan wrote: On 09.02.2011 06:19, Jarod Wilson wrote: [...] Looks like bInterfaceNumber == 2 on this device. The patch to handle this similar to the conexant polaris devices should be pretty trivial. I'll try to get something together tomorrow. Hi

Re: IR for remote control not working for Hauppauge WinTV-HVR-1150 (SAA7134)

2011-02-16 Thread Jarod Wilson
On Tue, Feb 15, 2011 at 05:04:33PM -0500, Jarod Wilson wrote: First off, video4linux-list is dead, you want linux-media (added to cc). On Tue, Feb 15, 2011 at 06:27:29PM -0200, Fernando Laudares Camargos wrote: Hello, I have a Hauppauge WinTV-HVR-1150 (model 67201) pci tv tuner working

Re: IR for remote control not working for Hauppauge WinTV-HVR-1150 (SAA7134)

2011-02-16 Thread Jarod Wilson
. But the IR sensor is not being detected and no input device is being created at /proc/bus/input. I have tried to follow the information from Jarod Wilson and Mauro Carvalho Chehab in https://bugzilla.redhat.com/show_bug.cgi?id=665870 (regarding Fedora 14) but couldn't resolve it myself. I'm

Re: [PATCH] [media] rc: do not enable remote controller adapters by default.

2011-02-16 Thread Jarod Wilson
on a TV tuner card (think music player, video playback app streaming content from somewhere on the network, etc). -- Jarod Wilson ja...@redhat.com -- 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

Re: MCEUSB: falsly claims mass storage device

2011-02-08 Thread Jarod Wilson
. The patch to handle this similar to the conexant polaris devices should be pretty trivial. I'll try to get something together tomorrow. -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org

Re: Is media_build download broken?

2011-01-26 Thread Jarod Wilson
On Jan 26, 2011, at 12:11 AM, VDR User wrote: On Tue, Jan 25, 2011 at 8:30 PM, Jarod Wilson ja...@wilsonet.com wrote: I'm getting the following now: git pull ssh://linuxtv.org/git/media_build master Permission denied (publickey). Works here just fine. Looks like your ssh key setup

<    1   2   3   4   5   6   7   >