From: "David Härdeman" <david@hardeman.nu>
To: linux-media@vger.kernel.org
Cc: jarod@wilsonet.com, mchehab@infradead.org
Subject: [PATCH 0/7] rc-core: ir-core to rc-core conversion
Date: Fri, 29 Oct 2010 21:07:52 +0200 [thread overview]
Message-ID: <20101029190745.11982.75723.stgit@localhost.localdomain> (raw)
This is my current patch queue, the main change is to make struct rc_dev
the primary interface for rc drivers and to abstract away the fact that
there's an input device lurking in there somewhere. The patchset has been
updated to apply on top of the staging/for_v2.6.37-rc1 branch of the
media_tree git repo.
In addition, the cx88 and winbond-cir drivers are converted to use rc-core.
The first patch (which is not to be merged) just merges the large scancodes
patches for the input subsystem to make sure that merging my patches upstream
will be doable post -rc1 (the input patches are already merged upstream).
Given the changes, these patches touch every single driver. Obviously I
haven't tested them all due to a lack of hardware (I have made sure that
all drivers compile without any warnings and I have tested the end result
on mceusb and winbond-cir hardware).
---
David Härdeman (7):
ir-core: dummy patch to base my work on top of Dmitry's large scancode work
ir-core: convert drivers/media/video/cx88 to ir-core
ir-core: remove remaining users of the ir-functions keyhandlers
ir-core: more cleanups of ir-functions.c
ir-core: merge and rename to rc-core
ir-core: make struct rc_dev the primary interface
rc-core: convert winbond-cir
drivers/char/keyboard.c | 31 -
drivers/input/evdev.c | 100 +-
drivers/input/input.c | 192 ++-
drivers/input/misc/Kconfig | 18
drivers/input/misc/Makefile | 1
drivers/input/misc/winbond-cir.c | 1608 ---------------------------
drivers/media/IR/Kconfig | 19
drivers/media/IR/Makefile | 7
drivers/media/IR/ene_ir.c | 129 +-
drivers/media/IR/ene_ir.h | 3
drivers/media/IR/imon.c | 67 -
drivers/media/IR/ir-core-priv.h | 26
drivers/media/IR/ir-functions.c | 254 ----
drivers/media/IR/ir-jvc-decoder.c | 13
drivers/media/IR/ir-keytable.c | 577 ----------
drivers/media/IR/ir-lirc-codec.c | 121 +-
drivers/media/IR/ir-nec-decoder.c | 15
drivers/media/IR/ir-raw-event.c | 382 ------
drivers/media/IR/ir-rc5-decoder.c | 13
drivers/media/IR/ir-rc5-sz-decoder.c | 13
drivers/media/IR/ir-rc6-decoder.c | 17
drivers/media/IR/ir-sony-decoder.c | 11
drivers/media/IR/ir-sysfs.c | 362 ------
drivers/media/IR/mceusb.c | 105 +-
drivers/media/IR/nuvoton-cir.c | 85 +
drivers/media/IR/nuvoton-cir.h | 3
drivers/media/IR/rc-main.c | 1134 +++++++++++++++++++
drivers/media/IR/rc-map.c | 107 --
drivers/media/IR/rc-raw.c | 371 ++++++
drivers/media/IR/streamzap.c | 66 -
drivers/media/IR/winbond-cir.c | 934 ++++++++++++++++
drivers/media/dvb/dm1105/Kconfig | 3
drivers/media/dvb/dm1105/dm1105.c | 42 -
drivers/media/dvb/dvb-usb/af9015.c | 16
drivers/media/dvb/dvb-usb/anysee.c | 2
drivers/media/dvb/dvb-usb/dib0700.h | 2
drivers/media/dvb/dvb-usb/dib0700_core.c | 8
drivers/media/dvb/dvb-usb/dib0700_devices.c | 144 +-
drivers/media/dvb/dvb-usb/dvb-usb-remote.c | 77 +
drivers/media/dvb/dvb-usb/dvb-usb.h | 12
drivers/media/dvb/dvb-usb/lmedm04.c | 42 -
drivers/media/dvb/mantis/mantis_common.h | 4
drivers/media/dvb/mantis/mantis_input.c | 72 +
drivers/media/dvb/siano/smscoreapi.c | 2
drivers/media/dvb/siano/smsir.c | 52 -
drivers/media/dvb/siano/smsir.h | 3
drivers/media/dvb/ttpci/Kconfig | 3
drivers/media/dvb/ttpci/budget-ci.c | 49 -
drivers/media/video/Kconfig | 2
drivers/media/video/bt8xx/Kconfig | 4
drivers/media/video/bt8xx/bttv-input.c | 73 -
drivers/media/video/bt8xx/bttvp.h | 1
drivers/media/video/cx18/Kconfig | 3
drivers/media/video/cx231xx/Kconfig | 4
drivers/media/video/cx23885/cx23885-input.c | 64 +
drivers/media/video/cx23885/cx23885.h | 3
drivers/media/video/cx88/Kconfig | 3
drivers/media/video/cx88/cx88-input.c | 233 +---
drivers/media/video/em28xx/Kconfig | 4
drivers/media/video/em28xx/em28xx-input.c | 72 +
drivers/media/video/ir-kbd-i2c.c | 28
drivers/media/video/ivtv/Kconfig | 3
drivers/media/video/saa7134/Kconfig | 2
drivers/media/video/saa7134/saa7134-input.c | 121 +-
drivers/media/video/tlg2300/Kconfig | 4
drivers/staging/cx25821/Kconfig | 4
drivers/staging/go7007/Kconfig | 4
drivers/staging/tm6000/tm6000-input.c | 98 +-
include/linux/input.h | 55 +
include/media/ir-common.h | 38 -
include/media/ir-core.h | 201 ++-
include/media/ir-kbd-i2c.h | 7
include/media/rc-map.h | 2
73 files changed, 3705 insertions(+), 4645 deletions(-)
delete mode 100644 drivers/input/misc/winbond-cir.c
delete mode 100644 drivers/media/IR/ir-keytable.c
delete mode 100644 drivers/media/IR/ir-raw-event.c
delete mode 100644 drivers/media/IR/ir-sysfs.c
create mode 100644 drivers/media/IR/rc-main.c
delete mode 100644 drivers/media/IR/rc-map.c
create mode 100644 drivers/media/IR/rc-raw.c
create mode 100644 drivers/media/IR/winbond-cir.c
--
David Härdeman
next reply other threads:[~2010-10-29 19:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-29 19:07 David Härdeman [this message]
2010-10-29 19:07 ` [PATCH 1/7] ir-core: dummy patch to base my work on top of Dmitry's large scancode work David Härdeman
2010-10-29 19:08 ` [PATCH 2/7] ir-core: convert drivers/media/video/cx88 to ir-core David Härdeman
2010-11-02 15:57 ` Jarod Wilson
2010-10-29 19:08 ` [PATCH 3/7] ir-core: remove remaining users of the ir-functions keyhandlers David Härdeman
2010-11-02 15:59 ` Jarod Wilson
2010-10-29 19:08 ` [PATCH 4/7] ir-core: more cleanups of ir-functions.c David Härdeman
2010-11-02 15:59 ` Jarod Wilson
2010-10-29 19:08 ` [PATCH 5/7] ir-core: merge and rename to rc-core David Härdeman
2010-11-02 16:01 ` Jarod Wilson
2010-10-29 19:08 ` [PATCH 6/7] ir-core: make struct rc_dev the primary interface David Härdeman
2010-11-02 16:02 ` Jarod Wilson
2010-11-10 4:31 ` Mauro Carvalho Chehab
2010-11-10 9:30 ` David Härdeman
2010-10-29 19:08 ` [PATCH 7/7] rc-core: convert winbond-cir David Härdeman
2010-11-02 16:03 ` Jarod Wilson
2010-10-29 20:11 ` [PATCH 0/7] rc-core: ir-core to rc-core conversion Jarod Wilson
2010-11-01 22:07 ` David Härdeman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101029190745.11982.75723.stgit@localhost.localdomain \
--to=david@hardeman.nu \
--cc=jarod@wilsonet.com \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox