[PATCH] nuvoton-cir: add proper rx fifo overrun handling

2010-10-08 Thread Jarod Wilson
nvt_resume(struct pnp_dev *pdev) nvt_dbg("%s called", __func__); /* open interrupt */ - nvt_cir_reg_write(nvt, CIR_IREN_RTR | CIR_IREN_PE, CIR_IREN); + nvt_set_cir_iren(nvt); /* Enable CIR logical device */ nvt_efm_enable(nvt); -- 1.7.1 -- Jarod Wils

[PATCH] IR: add driver for Nuvoton w836x7hg integrated CIR

2010-10-08 Thread Jarod Wilson
y or repetitively. Also tested to work with the lirc bridge plugin for userspace decoding. Signed-off-by: Jarod Wilson --- drivers/media/IR/Kconfig | 13 + drivers/media/IR/Makefile |1 + drivers/media/IR/nuvoton-cir.c | 1216 drivers/media/

Re: [PATCH] lirc: Make struct file_operations pointer const

2010-10-04 Thread Jarod Wilson
on discards > qualifiers from pointer target type > drivers/staging/lirc/lirc_zilog.c:1284: warning: assignment discards > qualifiers from pointer target type > > Signed-off-by: Geert Uytterhoeven Whoops, yeah, obvious fix. Acked-by: Jarod Wilson -- Jarod Wilson ja...@redhat.co

Re: [GIT PATCHES FOR 2.6.37] Remove v4l2-i2c-drv.h and most of i2c-id.h

2010-09-26 Thread Jarod Wilson
_CX2388x; > drivers/staging/lirc/lirc_i2c.c: if (adap->id == I2C_HW_B_CX2388x) > drivers/staging/lirc/lirc_i2c.c: if (adap->id == I2C_HW_B_CX2388x) { > drivers/staging/lirc/lirc_zilog.c:#ifdef I2C_HW_B_HDPVR > drivers/staging/lirc/lirc_zilog.c:if (

[GIT PULL REQUEST] misc IR fixes and enhancements for 2.6.37

2010-09-23 Thread Jarod Wilson
risteu Rozanski (1): IR: add support to Asus TV-Box to ir-kbd-i2c driver David Härdeman (1): imon: split mouse events to a separate input dev Jarod Wilson (4): IR: export ir_keyup so imon driver can use it directly IR/imon: protect ictx's kc and last_keycode w/spinloc

Re: IR code autorepeat issue?

2010-09-20 Thread Jarod Wilson
but this patch should still be relevant to both, since I don't see it yet in the Fedora tree, and the Ubuntu patches are more or less identical to at least the first round of IR stack update patches in the Fedora kernel. (Hm, I should actually give the Ubuntu folks some updated patches, but

Re: [PATCH 2/4] imon: split mouse events to a separate input dev

2010-09-16 Thread Jarod Wilson
On Thu, Sep 16, 2010 at 03:43:42PM +0200, David Härdeman wrote: > On Thu, September 16, 2010 15:34, Jarod Wilson wrote: > > On Thu, Sep 16, 2010 at 01:32:07PM +0200, David Härdeman wrote: > >> On Thu, September 16, 2010 07:22, Jarod Wilson wrote: > >> > This is a sta

Re: [PATCH 2/4] imon: split mouse events to a separate input dev

2010-09-16 Thread Jarod Wilson
On Thu, Sep 16, 2010 at 01:32:07PM +0200, David Härdeman wrote: > On Thu, September 16, 2010 07:22, Jarod Wilson wrote: > > This is a stab at separating the mouse (and front panel/knob) events > > out to a separate input device. This is necessary in preparation for > > the n

Re: [PATCH 4/4] IR/imon: set up mce-only devices w/mce keytable

2010-09-16 Thread Jarod Wilson
detected_display_type = IMON_DISPLAY_TYPE_VFD; > > + allowed_protos = IR_TYPE_RC6; + break; > > + /* iMON LCD, MCE IR */ +case 0x9f: > > > > That "LCD" in the comment should be VFD. Ah, dammit, copy-paste fail. Will fix, thanks! -- Jarod Wilso

[PATCH 4/4] IR/imon: set up mce-only devices w/mce keytable

2010-09-15 Thread Jarod Wilson
>From 321eb136b4c933a6a2e6583ccf110c22874c02fe Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Tue, 14 Sep 2010 23:28:41 -0400 Subject: [PATCH 4/4] IR/imon: set up mce-only devices w/mce keytable Currently, they get set up with the pad keytable, which they can't actually use at all.

[PATCH 3/4] IR/imon: protect ictx's kc and last_keycode w/spinlock

2010-09-15 Thread Jarod Wilson
>From 1fd62121d93ca507ec6f2f692121f853a2c46889 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Wed, 15 Sep 2010 14:56:03 -0400 Subject: [PATCH 3/4] IR/imon: protect ictx's kc and last_keycode w/spinlock Lest we get our keycodes wrong... Thus far, in practice, I've not found i

[PATCH 2/4] imon: split mouse events to a separate input dev

2010-09-15 Thread Jarod Wilson
dia/IR/imon.c @@ -44,7 +44,7 @@ #define MOD_AUTHOR "Jarod Wilson " #define MOD_DESC "Driver for SoundGraph iMON MultiMedia IR/Display" #define MOD_NAME "imon" -#define MOD_VERSION"0.9.1" +#define MOD_VERSION"0.9.2" #d

[PATCH 1/4] IR: export ir_keyup so imon driver can use it directly

2010-09-15 Thread Jarod Wilson
>From d31919ac08ba9a203bd673bbed18e78293ceaa68 Mon Sep 17 00:00:00 2001 From: Jarod Wilson Date: Wed, 15 Sep 2010 14:31:12 -0400 Subject: [PATCH 1/4] IR: export ir_keyup so imon driver can use it directly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8

[PATCH 0/4] IR/imon: split out mouse events and fix bugs

2010-09-15 Thread Jarod Wilson
eshuffling of auto-config bits for the 0xffdc imon devices so the mce-only ones get set up w/the mce key table by default instead of the imon pad one (based on input from Anders Eriksson over on the lirc list). David Härdeman (1): imon: split mouse events to a separate input dev Jarod Wilson

Re: [PATCH] ir-core: Fix null dereferences in the protocols sysfs interface

2010-09-15 Thread Jarod Wilson
On Wed, Sep 15, 2010 at 05:57:10AM -0700, Brian Rogers wrote: > On 09/08/2010 07:16 AM, Jarod Wilson wrote: > >On Wed, Sep 08, 2010 at 07:04:03AM -0700, Brian Rogers wrote: > >>ir_dev->raw is also null. If I check these pointers before using > >>them, and bail out

Re: [PATCH 0/6] Large scancode handling

2010-09-13 Thread Jarod Wilson
On Wed, Sep 8, 2010 at 11:34 AM, Dmitry Torokhov wrote: > On Wed, Sep 08, 2010 at 10:31:21AM -0400, Jarod Wilson wrote: >> On Wed, Sep 08, 2010 at 12:41:38AM -0700, Dmitry Torokhov wrote: ... >> > Ville, do you still have the hardware to try our ati_remote2 changes? >>

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-10 Thread Jarod Wilson
On Fri, Sep 10, 2010 at 11:35:23AM +0300, Maxim Levitsky wrote: > On Thu, 2010-09-09 at 22:01 -0400, Jarod Wilson wrote: > > On Thu, Sep 09, 2010 at 12:34:27AM -0400, Jarod Wilson wrote: > > ... > > > >> For now, I've applied patches 3, 4 and 5, as it is nice to

Re: [PATCH 5/8] IR: extend MCE keymap.

2010-09-10 Thread Jarod Wilson
On Fri, Sep 10, 2010 at 10:27:02AM +0200, David Härdeman wrote: > On Fri, September 10, 2010 03:37, Jarod Wilson wrote: > > I think for mythtv, we're going to end up having a daemon process with > > elevated privs that reads directly from input devices to get around > >

Re: [PATCH 5/8] IR: extend MCE keymap.

2010-09-10 Thread Jarod Wilson
On Fri, Sep 10, 2010 at 11:40:31AM +0300, Maxim Levitsky wrote: > On Thu, 2010-09-09 at 21:37 -0400, Jarod Wilson wrote: > > On Thu, Sep 9, 2010 at 8:40 PM, Maxim Levitsky > > wrote: > > > On Wed, 2010-09-08 at 10:47 -0400, Jarod Wilson wrote: > > >> O

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-10 Thread Jarod Wilson
On Fri, Sep 10, 2010 at 10:08:24AM +0200, David Härdeman wrote: > On Fri, September 10, 2010 04:01, Jarod Wilson wrote: > > Wuff. None of the three builds is at all stable on my laptop, but I can't > > actually point the finger at any of the three patchsets, since I'

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-09 Thread Jarod Wilson
On Thu, Sep 09, 2010 at 12:34:27AM -0400, Jarod Wilson wrote: ... > >> For now, I've applied patches 3, 4 and 5, as it is nice to have Jarod's > >> review also. > > > > I've finally got them all applied atop current media_tree staging/v2.6.37, > &g

Re: [PATCH 5/8] IR: extend MCE keymap.

2010-09-09 Thread Jarod Wilson
On Thu, Sep 9, 2010 at 8:40 PM, Maxim Levitsky wrote: > On Wed, 2010-09-08 at 10:47 -0400, Jarod Wilson wrote: >> On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky >> wrote: >> > These keys are found on remote bundled with >> > Toshiba Qosmio F50-10q. >

Re: [PATCH 2/5] rc-core: remove remaining users of the ir-functions keyhandlers

2010-09-08 Thread Jarod Wilson
left intact, so all the ir_type bits removed are indeed completely unnecessary. That was a long-winded way of saying: Acked-by: 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

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Jarod Wilson
view. The better is to apply such patch >> just after the release of 2.6.37-rc1, after having all those conflicts >> solved. > > I agree that the big scancode patches from the input tree should go > first. I keep updating my patchset as the media_tree (staging/v2.6.37 > b

Re: [PATCH 4/5] rc-core: make struct rc_dev the primary interface for rc drivers

2010-09-08 Thread Jarod Wilson
ts it away). With the caveat that I haven't actually functionally tested it yet, nor looked at every single bit of it: Acked-by: 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 ma

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-08 Thread Jarod Wilson
On Wed, Sep 8, 2010 at 6:42 PM, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 06:54:02PM -0300, Mauro Carvalho Chehab wrote: >> Em 06-09-2010 18:26, Maxim Levitsky escreveu: >> > Hi, >> > >> > Here is full overview of my patches: >> > >> > Pat

Re: [PATCH 2/8] IR: make sure we register the input device when it is safe to do so.

2010-09-08 Thread Jarod Wilson
nd this fix looks good to me. Acked-by: 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 1/8] IR: plug races in IR raw thread.

2010-09-08 Thread Jarod Wilson
ould prevent the race (also heavily supported by your testing). Acked-by: 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 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-08 Thread Jarod Wilson
r. > > For now, I've applied patches 3, 4 and 5, as it is nice to have Jarod's > review also. I've finally got them all applied atop current media_tree staging/v2.6.37, though none of the streamzap bits in patch 7 are applicable any longer. Will try to get through look

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 09:56:07AM -0700, Dmitry Torokhov wrote: > On Wed, Sep 08, 2010 at 12:09:08PM -0400, Jarod Wilson wrote: > > On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > > > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > > > &g

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 12:50:46PM -0400, Andy Walls wrote: > On Wed, 2010-09-08 at 11:26 -0400, Jarod Wilson wrote: > > On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky > > wrote: > > > Add new event types for timeout & carrier report >

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > It'll conflict a little bith with the tivo slide patch I posted > > > > yesterday, > > > > but mostly just minor context changes. I can

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Jarod Wilson
irc and upon looking at the code, we don't actually do anything useful with duty_cycle yet, so perhaps just cut it out entirely for the moment, and add it later when its of use. -- 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 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 12:15:06PM -0300, Mauro Carvalho Chehab wrote: > Em 08-09-2010 11:24, Jarod Wilson escreveu: > > On Wed, Sep 08, 2010 at 11:48:50AM +0200, Jiri Kosina wrote: > >> On Wed, 8 Sep 2010, Dmitry Torokhov wrote: > >> > >>> Hi Mauro, > &g

Re: [PATCH 5/8] IR: extend MCE keymap.

2010-09-08 Thread Jarod Wilson
changed, 3 insertions(+), 0 deletions(-) Acked-by: 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 4/8] IR: fix keys beeing stuck down forever.

2010-09-08 Thread Jarod Wilson
s and/or descriptions of the functions, but maybe people just need to read more carefully (dunno, haven't looked to see what's there for usage descriptions already)... Anyway. > Signed-off-by: Maxim Levitsky > --- >  drivers/media/IR/ir-keytable.c |    2 +- >  1 files chan

Re: [PATCH 3/8] IR: fix duty cycle capability

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > Due to typo lirc bridge enabled wrong capability. > > Signed-off-by: Maxim Levitsky > --- >  drivers/media/IR/ir-lirc-codec.c |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) Acked-by: Jarod Wilson -

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
are to try our ati_remote2 changes? If not, I've got the hardware. (Speaking of which, porting ati_remote* over to {ir,rc}-core is also on the TODO list, albeit with very very low priority at the moment). -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line "un

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
sort it out). > > So please add > > Acked-by: Jiri Kosina > > to the hid-input.c bits and feel free to take it through your tree, if it > is convenient for you. It'll conflict a little bith with the tivo slide patch I posted yesterday, but mostly just minor con

Re: [PATCH 1/2] ir-core: centralize sysfs raw decoder enabling/disabling

2010-09-08 Thread Jarod Wilson
I get a working lircd, but > of course the file /sys/devices/virtual/rc/rc0/protocols no longer > does anything. On 2.6.35.4, the system never creates the > /sys/class/rc/rc0/current_protocol file. Is it the case that the > 'protocols' file should never appear, because my card can't support > this feature? Hm... So protocols is indeed intended for hardware that handles raw IR, as its a list of raw IR decoders available/enabled/disabled for the receiver. But some devices that do onboard decoding and deal with scancodes still need to support changing protocols, as they can be told "decode rc5" or "decode nec", etc... My memory is currently foggy on how it was exactly that it was supposed to be donee though. :) (Yet another reason I really need to poke at the imon driver code again). -- 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-info.html

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Jarod Wilson
t moves mouse/panel/knob input to its own input device should be possible to take in advance of everything else, more or less, though I need to finish actually testing it out (and should probably make some further imon fixes for issues listed in a kernel.org bugzilla, the number of which escapes m

[GIT PULL REQUEST] IR updates for 2.6.36

2010-09-06 Thread Jarod Wilson
:32 -0300) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jarod/linux-2.6-lirc.git staging Jarod Wilson (2): IR/streamzap: functional in-kernel decoding mceusb: add two new ASUS device IDs drivers/media/IR/Kconfig| 12

[PATCH] IR/mceusb: add an ASUS device ID

2010-08-27 Thread Jarod Wilson
Reported in lirc sf.net tracker Signed-off-by: Jarod Wilson --- drivers/media/IR/mceusb.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/media/IR/mceusb.c b/drivers/media/IR/mceusb.c index ac6bb2c..f0b7e42 100644 --- a/drivers/media/IR/mceusb.c +++ b/drivers

Re: [PATCH 0/3] Proposed ir-core (rc-core) changes

2010-08-27 Thread Jarod Wilson
on that port until it gets merged.) > David Härdeman wrote: > > >On Thu, August 26, 2010 21:14, Jarod Wilson wrote: > >> On Wed, Aug 25, 2010 at 01:01:57AM +0200, David Härdeman wrote: > >>> The following series merges the different files that currently ma

Re: [PATCH 0/3] Proposed ir-core (rc-core) changes

2010-08-26 Thread Jarod Wilson
ke the change, why no go whole hog? (Or was it only things relevant to ir specifically right now that didn't get renamed?) -- 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-info.html

Re: Remote that breaks current system

2010-08-16 Thread Jarod Wilson
On Mon, Aug 16, 2010 at 11:30 PM, Mauro Carvalho Chehab wrote: > Em 16-08-2010 21:14, Jarod Wilson escreveu: > >>> Just one minor nitpick. >>> You could 'use' the original RC5 decoder, but add a knob to it to make >>> it accept 15 bits instead of 14. &g

Re: Remote that breaks current system

2010-08-16 Thread Jarod Wilson
On Mon, Aug 16, 2010 at 4:41 PM, Maxim Levitsky wrote: > On Mon, 2010-08-16 at 00:04 -0400, Jarod Wilson wrote: >> On Thu, Aug 12, 2010 at 2:46 AM, Christoph Bartelmus >> wrote: >> ... >> >> So I spent a while beating on things the past few nights for giggles &

[PATCH] IR/streamzap: enable functional in-kernel decoding

2010-08-16 Thread Jarod Wilson
in-kernel decoder engine. That being the case, I'm yanking it all out, as it greatly simplifies the driver code (net result is that streamzap.c is now 252 lines less than lirc_streamzap.c was). Signed-off-by: Jarod Wilson --- drivers/media/IR/Kconfig

Re: Remote that breaks current system

2010-08-15 Thread Jarod Wilson
it streamzap, the other 1/3 get decoded as 14-bit RC5, and don't match anything in the keytable (and often duplicate one another). So it looks like at least for the time being, a separate parallel decoder is the way to go. I'm thinking that I like the approach of only explicitly loading it from the streamzap driver though. -- 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] IR: ir-raw-event: null pointer dereference

2010-08-12 Thread Jarod Wilson
- Dan Carpenter wrote: > The original code dereferenced ir->raw after freeing it and setting it > to NULL. > > Signed-off-by: Dan Carpenter Acked-by: Jarod Wilson -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line "unsubscribe linux-m

Re: Remote that breaks current system

2010-08-11 Thread Jarod Wilson
On Mon, Aug 2, 2010 at 4:42 PM, Jon Smirl wrote: > On Mon, Aug 2, 2010 at 2:09 PM, Jarod Wilson wrote: >> On Mon, Aug 02, 2010 at 01:13:22PM -0400, Jon Smirl wrote: >>> On Mon, Aug 2, 2010 at 12:42 PM, Christoph Bartelmus >>> wrote: ... >>> > It has n

Re: [PATCH 3/6] V4L/DVB: smsusb: enable IR port for Hauppauge WinTV MiniStick

2010-08-03 Thread Jarod Wilson
t; >> I will compile and try a new kernel tonight. >> >> Wondering - is this >>   http://git.sliepen.org/browse?p=inputlirc >> usefull to feed the input events to LIRC when trying the new driver with a >> slightly older >> LIRC based distro? > > The in-ke

[GIT PULL REQUEST] IR and lirc updates for pre-2.6.36-rc1

2010-08-02 Thread Jarod Wilson
au (1): V4L/DVB: staging/lirc: fix Kconfig dependencies Jarod Wilson (7): IR/imon: remove incorrect calls to input_free_device IR/imon: remove bad ir_input_dev use IR/mceusb: remove bad ir_input_dev use staging/lirc: fix non-CONFIG_MODULES build horkage IR/mceu

[PATCH 2/2] IR: put newly ported streamzap driver in proper home

2010-08-02 Thread Jarod Wilson
Moves drivers/staging/lirc/lirc_streamzap.c to drivers/media/IR/streamzap.c, along with making the requisite Kconfig and Makefile changes. Signed-off-by: Jarod Wilson --- drivers/media/IR/Kconfig | 12 + drivers/media/IR/Makefile |1 + drivers/media/IR/streamzap.c

[PATCH 1/2] staging/lirc: port lirc_streamzap to ir-core

2010-08-02 Thread Jarod Wilson
hristoph Bartelmus Signed-off-by: Jarod Wilson --- drivers/media/IR/keymaps/Makefile |1 + drivers/media/IR/keymaps/rc-rc5-streamzap.c | 81 +++ drivers/staging/lirc/lirc_streamzap.c | 812 --- include/media/rc-map.h |1 + 4

[PATCH] IR/mceusb: less generic callback name and remove cruft

2010-08-02 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- drivers/media/IR/mceusb.c |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/media/IR/mceusb.c b/drivers/media/IR/mceusb.c index 65b0738..ac6bb2c 100644 --- a/drivers/media/IR/mceusb.c +++ b/drivers/media/IR/mceusb.c @@ -427,7

Re: [PATCH 3/7] V4L/DVB: dvb-usb: prepare drivers for using rc-core

2010-08-02 Thread Jarod Wilson
h this change, it is possible to have both legacy and rc-core > based code inside the dvb-usb-remote, allowing a gradual migration > to rc-core, driver per driver. > > Signed-off-by: Mauro Carvalho Chehab Acked-by: Jarod Wilson -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this

Re: [PATCH 2/7] V4L/DVB: dvb-usb: get rid of struct dvb_usb_rc_key

2010-08-02 Thread Jarod Wilson
ig, but trivial patch. It is a 3 line delect, plus > lots of rename on several dvb-usb files. > > Signed-off-by: Mauro Carvalho Chehab Acked-by: Jarod Wilson -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send the line "unsubscribe linux-media"

Re: [PATCH] IR keymap: Add print button for HP OEM version of MCE remote

2010-08-02 Thread Jarod Wilson
who doesn't need "remote printing", while one is sitting on the > couch across from one's PC? ;) Hah, nice. Most Useful Remote Button Ever. > Signed-off-by: Andy Walls Acked-by: Jarod Wilson -- Jarod Wilson ja...@wilsonet.com -- To unsubscribe from this list: send

Re: Remote that breaks current system

2010-08-02 Thread Jarod Wilson
t to use another remote that actually uses a standard protocol, and want to use in-kernel decoding for that, its just an ir-keytable call away. For giggles, I may tinker with implementing another decoder engine though, if only to force myself to actually pay more attention to protocol specifics. Fo

Re: Remote that breaks current system

2010-08-02 Thread Jarod Wilson
bits. > Yes, the Streamzap remote does _not_ use standard RC-5. > Did I mention this already? Yes. ;-) D'oh, yeah, sorry, completely forgot you already mentioned this. That would certainly explain why the rc5 decoder isn't happy with it. So the *receiver* itself is perfectly function

Re: [PATCH 09/13] IR: add helper function for hardware with small o/b buffer.

2010-08-02 Thread Jarod Wilson
e lower level driver and to fetch, retrieve, and store > parameters. Yeah, I neglected to consider this change the first pass through an earlier revision. Making props modifiable on the fly does feel like we're mixing up hardware features with hardware state, and perhaps the on-the-fly-modifi

Re: Handling of large keycodes

2010-08-02 Thread Jarod Wilson
>> but I can't foresee any missing part on it. > >> > >> Currently, I'm not using my input patches, as I was waiting for your > >> review. I just patched the userspace application, in order to test the > >> legacy > >> mode. > >> > > > > OK, great. > > > > I want to fold all the patches from your tree plus this one into one and > > apply in one shpt (mentioning Jarod and Dan as authors of fixup patches > > in the changelog) - I do not believe we shoudl expose intermediate > > versions in the code that will go to Linus. Are you OK with this? > > I'm OK. If you want, you can add my ack on your patch: > > Acked-by: Mauro Carvalho Chehab Yeah, works for me too. -- 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-info.html

Remote that breaks current system (was: IR: Port ene driver...) it.

2010-08-02 Thread Jarod Wilson
.conf correctly. See here to be sure: http://lirc.sourceforge.net/remotes/streamzap/lircd.conf.streamzap -- 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-info.html

Re: [PATCH 0/9 v2] IR: few fixes, additions and ENE driver

2010-07-29 Thread Jarod Wilson
On Thu, Jul 29, 2010 at 5:28 PM, Jarod Wilson wrote: > On Thu, Jul 29, 2010 at 11:04:47PM +0300, Maxim Levitsky wrote: >> On Thu, 2010-07-29 at 21:35 +0200, Christoph Bartelmus wrote: >> > Hi! >> > >> > Maxim Levitsky "maximlevit...@gmail.com"

Re: [PATCH 0/9 v2] IR: few fixes, additions and ENE driver

2010-07-29 Thread Jarod Wilson
he decoder > > how much time has passed already since the last pulse. It does not change > > the meaning of the next space. > > its like a carrier report then I guess. > Its clear to me now. > > So, I really don't need to send/support timeout reports because

Re: [PATCH 0/9 v2] IR: few fixes, additions and ENE driver

2010-07-29 Thread Jarod Wilson
en further with descriptions of the assorted defines beyond just the ioctls. I'm going to scribble that on my TODO list right now...) -- 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-info.html

[PATCH] staging/lirc: fix non-CONFIG_MODULES build horkage

2010-07-29 Thread Jarod Wilson
ck hack and untested beyond building, since I don't have the hardware, but it should do the trick. Signed-off-by: Jarod Wilson --- drivers/staging/lirc/lirc_it87.c |9 ++--- drivers/staging/lirc/lirc_parallel.c |4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff

Re: [PATCH 0/9 v2] IR: few fixes, additions and ENE driver

2010-07-29 Thread Jarod Wilson
On Thu, Jul 29, 2010 at 06:30:28PM +0300, Maxim Levitsky wrote: > On Wed, 2010-07-28 at 23:52 -0400, Jarod Wilson wrote: > > On Thu, Jul 29, 2010 at 02:40:43AM +0300, Maxim Levitsky wrote: > > > Hi, > > > This is second version of the patchset. > > > Hopef

Re: linux-next: Tree for July 28 (lirc #2)

2010-07-29 Thread Jarod Wilson
On Thu, Jul 29, 2010 at 8:39 AM, Janne Grunau wrote: > On Thu, Jul 29, 2010 at 12:27:01AM -0400, Jarod Wilson wrote: >> On Wed, Jul 28, 2010 at 6:27 PM, Jarod Wilson wrote: >> > On Wed, Jul 28, 2010 at 6:16 PM, Randy Dunlap >> > wrote: >> >> On 07/28/10 1

Re: linux-next: Tree for July 28 (lirc #2)

2010-07-28 Thread Jarod Wilson
On Wed, Jul 28, 2010 at 6:27 PM, Jarod Wilson wrote: > On Wed, Jul 28, 2010 at 6:16 PM, Randy Dunlap wrote: >> On 07/28/10 15:04, Janne Grunau wrote: >>> On Wed, Jul 28, 2010 at 10:24:17AM -0700, Randy Dunlap wrote: >>>> On Wed, 28 Jul 2010 16:28:55 +1000 Stephen

Re: [PATCH 0/9 v2] IR: few fixes, additions and ENE driver

2010-07-28 Thread Jarod Wilson
t and tested: http://git.wilsonet.com/linux-2.6-ir-wip.git/?a=shortlog;h=refs/heads/maxim 7486d6ae3 addresses all the whitespace/formatting issues I had. Could either merge that into your patches, or I can just send it along as an additional patch after the fact. In either case, for 1-7 v2:

Re: [PATCH] IR/mceusb: remove bad ir_input_dev use

2010-07-28 Thread Jarod Wilson
On Tue, Jul 27, 2010 at 10:24 PM, Jarod Wilson wrote: > The ir_input_dev gets filled in by __ir_input_register, the one > allocated in mceusb_init_input_dev was being overwritten by the correct > one shortly after it was initialized (ultimately resulting in a memory > leak).

Re: linux-next: Tree for July 28 (lirc #2)

2010-07-28 Thread Jarod Wilson
;> >>>> Changes since 20100727: >>> >>> >>> When USB_SUPPORT is not enabled and MEDIA_SUPPORT is not enabled: >>> >> >> following patch should fix it >> >> Janne > > Acked-by: Randy Dunlap > > Thanks. Acked-by: Jarod

Re: [PATCH 4/9] IR: add helper functions for ir input devices that send ir timing data in small chunks, and alternation between pulses and spaces isn't guaranteed.

2010-07-28 Thread Jarod Wilson
On Wed, Jul 28, 2010 at 01:46:27PM -0400, Jarod Wilson wrote: > On Wed, Jul 28, 2010 at 06:14:06PM +0300, Maxim Levitsky wrote: > > Signed-off-by: Maxim Levitsky > > With the caveat of requiring an improved changelog, per Mauro's suggestion: > > Acked-by: Jarod Wilso

Re: [PATCH 5/9] IR: extend interfaces to support more device settings

2010-07-28 Thread Jarod Wilson
mceusb after something along these lines is committed. I like the simplifications Mauro suggested for the ioctl handling. In addition to those, there's a bit of whitespace damage in lirc.h that I'd like to see cleaned up for v2. -- Jarod Wilson ja...@redhat.com -- To unsubscribe fro

Re: Can I expect in-kernel decoding to work out of box?

2010-07-28 Thread Jarod Wilson
t; >> allow > >> patents on software. > > > > Are there any IR protocols less than 20 (or 17) years old? > > Yes. This protocol is brand new: > https://www.smkusa.com/usa/technologies/qp/ > > And several new devices are starting to accept it. The U

Re: [PATCH 6/9] IR: actually allow not to compile keymaps in..

2010-07-28 Thread Jarod Wilson
his one, useful improvement, I think. We even get meaningful output logged as well -- get_rc_map() will let us know the initially requested keymap failed to load, and then will let us know whether or not the empty keymap loaded. Acked-by: Jarod Wilson -- Jarod Wilson ja...@redhat.com -- To unsubs

Re: [PATCH 4/9] IR: add helper functions for ir input devices that send ir timing data in small chunks, and alternation between pulses and spaces isn't guaranteed.

2010-07-28 Thread Jarod Wilson
On Wed, Jul 28, 2010 at 06:14:06PM +0300, Maxim Levitsky wrote: > Signed-off-by: Maxim Levitsky With the caveat of requiring an improved changelog, per Mauro's suggestion: Acked-by: Jarod Wilson I suspect at least some of this code may be of use to the streamzap driver as well

Re: [PATCH 3/9] IR: replace spinlock with mutex.

2010-07-28 Thread Jarod Wilson
nk Maxim is correct here, we should be okay with changing this to a mutex, unless I'm missing something else. -- 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-info.html

Re: [PATCH 2/9] IR: minor fixes:

2010-07-28 Thread Jarod Wilson
y: Maxim Levitsky For the ir-lirc-codec-specific bits: Acked-by: Jarod Wilson I'm inclined to pull them into my tree now, and the IR_dprintk and TO_US portions can be handled separately. -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line "unsubscribe linu

Re: [PATCH 8/9] IR: Add ENE input driver.

2010-07-28 Thread Jarod Wilson
other drivers to rc-core. > > The version in staging is outdated. D'oh, sorry about that. > Should I first update it, and then move? Yeah, that sounds sane to me. -- Jarod Wilson ja...@redhat.com -- To unsubscribe from this list: send the line "unsubscribe linux-medi

Re: Can I expect in-kernel decoding to work out of box?

2010-07-28 Thread Jarod Wilson
ore focused on porting additional drivers to ir-core at the moment than I am on testing all of the protocol decoders right now. [*] we still don't have an ir-core "native" tx method, but tx on the mceusb works quite well using the lirc bridge plugin -- Jarod Wilson ja...@redhat.c

Re: Can I expect in-kernel decoding to work out of box?

2010-07-27 Thread Jarod Wilson
ot mistaken, based at least partially on Jon's earlier work), but its entirely possible there are slight variants of each that aren't handled properly just yet. That right there is one of the major reasons I saw for writing the lirc bridge driver plugin in the first place -- the lirc use

[PATCH] IR/mceusb: remove bad ir_input_dev use

2010-07-27 Thread Jarod Wilson
: Maxim Levitsky Signed-off-by: Jarod Wilson --- drivers/media/IR/mceusb.c | 15 +-- 1 files changed, 1 insertions(+), 14 deletions(-) diff --git a/drivers/media/IR/mceusb.c b/drivers/media/IR/mceusb.c index 78bf7f7..9a7da32 100644 --- a/drivers/media/IR/mceusb.c +++ b/drivers

[PATCH] IR/imon: remove bad ir_input_dev use

2010-07-27 Thread Jarod Wilson
fixed by this. Ill-advised memcpy pointed out by Dmitry Torokhov, bad usage of ir_input_dev pointed out by Maxim Levitsky (in mceusb.c, which copied the bug from here). CC: Dmitry Torokhov CC: Maxim Levitsky Signed-off-by: Jarod Wilson --- drivers/media/IR/imon.c | 15 --- 1

Re: [PATCH 0/15] STAGING: add lirc device drivers

2010-07-27 Thread Jarod Wilson
On Tue, Jul 27, 2010 at 12:51:50PM -0700, Greg KH wrote: > On Tue, Jul 27, 2010 at 04:33:32PM -0300, Mauro Carvalho Chehab wrote: > > Em 27-07-2010 15:24, Jarod Wilson escreveu: > > > On Tue, Jul 27, 2010 at 09:09:56AM -0700, Greg KH wrote: > > >> On Tue, Jul 27, 2

Re: [PATCH 0/15] STAGING: add lirc device drivers

2010-07-27 Thread Jarod Wilson
On Tue, Jul 27, 2010 at 09:09:56AM -0700, Greg KH wrote: > On Tue, Jul 27, 2010 at 12:59:00PM -0300, Mauro Carvalho Chehab wrote: > > Em 26-07-2010 20:25, Jarod Wilson escreveu: > > Hm, Jarod, you forgot to cc: the staging maintainer, so I missed these > :) D'oh, sorry, ye

Re: [PATCH 0/15] STAGING: add lirc device drivers

2010-07-27 Thread Jarod Wilson
On Tue, Jul 27, 2010 at 12:59:00PM -0300, Mauro Carvalho Chehab wrote: > Em 26-07-2010 20:25, Jarod Wilson escreveu: > > This patch series adds the remaining lirc_foo device drivers to the staging > > tree. > > drivers/staging/lirc/TODO |8 + ^^^ > Hi

[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 --- drivers/staging/Kconfig |2 + drivers/staging/Makefile |1 + drivers/staging/lirc/Kconfig | 110 + drivers/staging/lirc/Makefile | 19

[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 --- drivers/staging/lirc/lirc_zilog.c | 1387 + 1 files changed, 1387 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/lirc/lirc_zilog.c diff --git a

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc/lirc_sir.c

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 100644 drivers

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 b/drivers/staging/lirc

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

2010-07-26 Thread Jarod Wilson
Signed-off-by: Jarod Wilson --- 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 100644 drivers

[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 --- drivers/staging

<    1   2   3   4   5   6   7   8   >