diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-11-17 11:28:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:50 -0500 |
commit | 6bda96447cef24fbf97a798b1ea664224d5fdc25 (patch) | |
tree | 4ab424732b58dfc3b2d0f1b64bd625d67f857cfa /drivers/media/rc | |
parent | a6e3b81f6198654207c4e972e7ed91931e53e93c (diff) |
[media] rc: rename the remaining things to rc_core
The Remote Controller subsystem is meant to be used not only by Infra Red
but also for similar types of Remote Controllers. The core is not specific
to Infra Red. As such, rename:
- ir-core.h to rc-core.h
- IR_CORE to RC_CORE
- namespace inside rc-core.c/rc-core.h
To be consistent with the other changes.
No functional change on this patch.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r-- | drivers/media/rc/Kconfig | 35 | ||||
-rw-r--r-- | drivers/media/rc/Makefile | 2 | ||||
-rw-r--r-- | drivers/media/rc/ene_ir.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/imon.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/ir-lirc-codec.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/keymaps/Kconfig | 2 | ||||
-rw-r--r-- | drivers/media/rc/keymaps/rc-lirc.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/mceusb.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/nuvoton-cir.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/rc-core-priv.h | 2 | ||||
-rw-r--r-- | drivers/media/rc/rc-main.c | 18 | ||||
-rw-r--r-- | drivers/media/rc/rc-raw.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/streamzap.c | 2 | ||||
-rw-r--r-- | drivers/media/rc/winbond-cir.c | 2 |
14 files changed, 39 insertions, 38 deletions
diff --git a/drivers/media/rc/Kconfig b/drivers/media/rc/Kconfig index ef19375899ec..42b4feb0e7f9 100644 --- a/drivers/media/rc/Kconfig +++ b/drivers/media/rc/Kconfig | |||
@@ -1,16 +1,17 @@ | |||
1 | menuconfig IR_CORE | 1 | menuconfig RC_CORE |
2 | tristate "Infrared remote controller adapters" | 2 | tristate "Remote Controller adapters" |
3 | depends on INPUT | 3 | depends on INPUT |
4 | default INPUT | 4 | default INPUT |
5 | ---help--- | 5 | ---help--- |
6 | Enable support for Remote Controllers on Linux. This is | 6 | Enable support for Remote Controllers on Linux. This is |
7 | needed in order to support several video capture adapters. | 7 | needed in order to support several video capture adapters. |
8 | Currently, all supported devices use InfraRed. | ||
8 | 9 | ||
9 | Enable this option if you have a video capture board even | 10 | Enable this option if you have a video capture board even |
10 | if you don't need IR, as otherwise, you may not be able to | 11 | if you don't need IR, as otherwise, you may not be able to |
11 | compile the driver for your adapter. | 12 | compile the driver for your adapter. |
12 | 13 | ||
13 | if IR_CORE | 14 | if RC_CORE |
14 | 15 | ||
15 | config LIRC | 16 | config LIRC |
16 | tristate | 17 | tristate |
@@ -27,7 +28,7 @@ source "drivers/media/rc/keymaps/Kconfig" | |||
27 | 28 | ||
28 | config IR_NEC_DECODER | 29 | config IR_NEC_DECODER |
29 | tristate "Enable IR raw decoder for the NEC protocol" | 30 | tristate "Enable IR raw decoder for the NEC protocol" |
30 | depends on IR_CORE | 31 | depends on RC_CORE |
31 | select BITREVERSE | 32 | select BITREVERSE |
32 | default y | 33 | default y |
33 | 34 | ||
@@ -37,7 +38,7 @@ config IR_NEC_DECODER | |||
37 | 38 | ||
38 | config IR_RC5_DECODER | 39 | config IR_RC5_DECODER |
39 | tristate "Enable IR raw decoder for the RC-5 protocol" | 40 | tristate "Enable IR raw decoder for the RC-5 protocol" |
40 | depends on IR_CORE | 41 | depends on RC_CORE |
41 | select BITREVERSE | 42 | select BITREVERSE |
42 | default y | 43 | default y |
43 | 44 | ||
@@ -47,7 +48,7 @@ config IR_RC5_DECODER | |||
47 | 48 | ||
48 | config IR_RC6_DECODER | 49 | config IR_RC6_DECODER |
49 | tristate "Enable IR raw decoder for the RC6 protocol" | 50 | tristate "Enable IR raw decoder for the RC6 protocol" |
50 | depends on IR_CORE | 51 | depends on RC_CORE |
51 | select BITREVERSE | 52 | select BITREVERSE |
52 | default y | 53 | default y |
53 | 54 | ||
@@ -57,7 +58,7 @@ config IR_RC6_DECODER | |||
57 | 58 | ||
58 | config IR_JVC_DECODER | 59 | config IR_JVC_DECODER |
59 | tristate "Enable IR raw decoder for the JVC protocol" | 60 | tristate "Enable IR raw decoder for the JVC protocol" |
60 | depends on IR_CORE | 61 | depends on RC_CORE |
61 | select BITREVERSE | 62 | select BITREVERSE |
62 | default y | 63 | default y |
63 | 64 | ||
@@ -67,7 +68,7 @@ config IR_JVC_DECODER | |||
67 | 68 | ||
68 | config IR_SONY_DECODER | 69 | config IR_SONY_DECODER |
69 | tristate "Enable IR raw decoder for the Sony protocol" | 70 | tristate "Enable IR raw decoder for the Sony protocol" |
70 | depends on IR_CORE | 71 | depends on RC_CORE |
71 | default y | 72 | default y |
72 | 73 | ||
73 | ---help--- | 74 | ---help--- |
@@ -76,7 +77,7 @@ config IR_SONY_DECODER | |||
76 | 77 | ||
77 | config IR_RC5_SZ_DECODER | 78 | config IR_RC5_SZ_DECODER |
78 | tristate "Enable IR raw decoder for the RC-5 (streamzap) protocol" | 79 | tristate "Enable IR raw decoder for the RC-5 (streamzap) protocol" |
79 | depends on IR_CORE | 80 | depends on RC_CORE |
80 | select BITREVERSE | 81 | select BITREVERSE |
81 | default y | 82 | default y |
82 | 83 | ||
@@ -88,7 +89,7 @@ config IR_RC5_SZ_DECODER | |||
88 | 89 | ||
89 | config IR_LIRC_CODEC | 90 | config IR_LIRC_CODEC |
90 | tristate "Enable IR to LIRC bridge" | 91 | tristate "Enable IR to LIRC bridge" |
91 | depends on IR_CORE | 92 | depends on RC_CORE |
92 | depends on LIRC | 93 | depends on LIRC |
93 | default y | 94 | default y |
94 | 95 | ||
@@ -99,7 +100,7 @@ config IR_LIRC_CODEC | |||
99 | config IR_ENE | 100 | config IR_ENE |
100 | tristate "ENE eHome Receiver/Transceiver (pnp id: ENE0100/ENE02xxx)" | 101 | tristate "ENE eHome Receiver/Transceiver (pnp id: ENE0100/ENE02xxx)" |
101 | depends on PNP | 102 | depends on PNP |
102 | depends on IR_CORE | 103 | depends on RC_CORE |
103 | ---help--- | 104 | ---help--- |
104 | Say Y here to enable support for integrated infrared receiver | 105 | Say Y here to enable support for integrated infrared receiver |
105 | /transceiver made by ENE. | 106 | /transceiver made by ENE. |
@@ -113,7 +114,7 @@ config IR_ENE | |||
113 | config IR_IMON | 114 | config IR_IMON |
114 | tristate "SoundGraph iMON Receiver and Display" | 115 | tristate "SoundGraph iMON Receiver and Display" |
115 | depends on USB_ARCH_HAS_HCD | 116 | depends on USB_ARCH_HAS_HCD |
116 | depends on IR_CORE | 117 | depends on RC_CORE |
117 | select USB | 118 | select USB |
118 | ---help--- | 119 | ---help--- |
119 | Say Y here if you want to use a SoundGraph iMON (aka Antec Veris) | 120 | Say Y here if you want to use a SoundGraph iMON (aka Antec Veris) |
@@ -125,7 +126,7 @@ config IR_IMON | |||
125 | config IR_MCEUSB | 126 | config IR_MCEUSB |
126 | tristate "Windows Media Center Ed. eHome Infrared Transceiver" | 127 | tristate "Windows Media Center Ed. eHome Infrared Transceiver" |
127 | depends on USB_ARCH_HAS_HCD | 128 | depends on USB_ARCH_HAS_HCD |
128 | depends on IR_CORE | 129 | depends on RC_CORE |
129 | select USB | 130 | select USB |
130 | ---help--- | 131 | ---help--- |
131 | Say Y here if you want to use a Windows Media Center Edition | 132 | Say Y here if you want to use a Windows Media Center Edition |
@@ -137,7 +138,7 @@ config IR_MCEUSB | |||
137 | config IR_NUVOTON | 138 | config IR_NUVOTON |
138 | tristate "Nuvoton w836x7hg Consumer Infrared Transceiver" | 139 | tristate "Nuvoton w836x7hg Consumer Infrared Transceiver" |
139 | depends on PNP | 140 | depends on PNP |
140 | depends on IR_CORE | 141 | depends on RC_CORE |
141 | ---help--- | 142 | ---help--- |
142 | Say Y here to enable support for integrated infrared receiver | 143 | Say Y here to enable support for integrated infrared receiver |
143 | /transciever made by Nuvoton (formerly Winbond). This chip is | 144 | /transciever made by Nuvoton (formerly Winbond). This chip is |
@@ -150,7 +151,7 @@ config IR_NUVOTON | |||
150 | config IR_STREAMZAP | 151 | config IR_STREAMZAP |
151 | tristate "Streamzap PC Remote IR Receiver" | 152 | tristate "Streamzap PC Remote IR Receiver" |
152 | depends on USB_ARCH_HAS_HCD | 153 | depends on USB_ARCH_HAS_HCD |
153 | depends on IR_CORE | 154 | depends on RC_CORE |
154 | select USB | 155 | select USB |
155 | ---help--- | 156 | ---help--- |
156 | Say Y here if you want to use a Streamzap PC Remote | 157 | Say Y here if you want to use a Streamzap PC Remote |
@@ -162,7 +163,7 @@ config IR_STREAMZAP | |||
162 | config IR_WINBOND_CIR | 163 | config IR_WINBOND_CIR |
163 | tristate "Winbond IR remote control" | 164 | tristate "Winbond IR remote control" |
164 | depends on X86 && PNP | 165 | depends on X86 && PNP |
165 | depends on IR_CORE | 166 | depends on RC_CORE |
166 | select NEW_LEDS | 167 | select NEW_LEDS |
167 | select LEDS_CLASS | 168 | select LEDS_CLASS |
168 | select LEDS_TRIGGERS | 169 | select LEDS_TRIGGERS |
@@ -176,4 +177,4 @@ config IR_WINBOND_CIR | |||
176 | To compile this driver as a module, choose M here: the module will | 177 | To compile this driver as a module, choose M here: the module will |
177 | be called winbond_cir. | 178 | be called winbond_cir. |
178 | 179 | ||
179 | endif #IR_CORE | 180 | endif #RC_CORE |
diff --git a/drivers/media/rc/Makefile b/drivers/media/rc/Makefile index 8c0e4cb19551..21251ba55904 100644 --- a/drivers/media/rc/Makefile +++ b/drivers/media/rc/Makefile | |||
@@ -2,7 +2,7 @@ rc-core-objs := rc-main.o rc-raw.o | |||
2 | 2 | ||
3 | obj-y += keymaps/ | 3 | obj-y += keymaps/ |
4 | 4 | ||
5 | obj-$(CONFIG_IR_CORE) += rc-core.o | 5 | obj-$(CONFIG_RC_CORE) += rc-core.o |
6 | obj-$(CONFIG_LIRC) += lirc_dev.o | 6 | obj-$(CONFIG_LIRC) += lirc_dev.o |
7 | obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o | 7 | obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o |
8 | obj-$(CONFIG_IR_RC5_DECODER) += ir-rc5-decoder.o | 8 | obj-$(CONFIG_IR_RC5_DECODER) += ir-rc5-decoder.o |
diff --git a/drivers/media/rc/ene_ir.c b/drivers/media/rc/ene_ir.c index 0a4151f03c7e..1ace4581f157 100644 --- a/drivers/media/rc/ene_ir.c +++ b/drivers/media/rc/ene_ir.c | |||
@@ -37,7 +37,7 @@ | |||
37 | #include <linux/interrupt.h> | 37 | #include <linux/interrupt.h> |
38 | #include <linux/sched.h> | 38 | #include <linux/sched.h> |
39 | #include <linux/slab.h> | 39 | #include <linux/slab.h> |
40 | #include <media/ir-core.h> | 40 | #include <media/rc-core.h> |
41 | #include "ene_ir.h" | 41 | #include "ene_ir.h" |
42 | 42 | ||
43 | static int sample_period; | 43 | static int sample_period; |
diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c index 8d4b35d1ae56..b6ba3c7dc632 100644 --- a/drivers/media/rc/imon.c +++ b/drivers/media/rc/imon.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <linux/input.h> | 38 | #include <linux/input.h> |
39 | #include <linux/usb.h> | 39 | #include <linux/usb.h> |
40 | #include <linux/usb/input.h> | 40 | #include <linux/usb/input.h> |
41 | #include <media/ir-core.h> | 41 | #include <media/rc-core.h> |
42 | 42 | ||
43 | #include <linux/time.h> | 43 | #include <linux/time.h> |
44 | #include <linux/timer.h> | 44 | #include <linux/timer.h> |
diff --git a/drivers/media/rc/ir-lirc-codec.c b/drivers/media/rc/ir-lirc-codec.c index ceabea6053de..f9086c5ba8b1 100644 --- a/drivers/media/rc/ir-lirc-codec.c +++ b/drivers/media/rc/ir-lirc-codec.c | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <linux/wait.h> | 16 | #include <linux/wait.h> |
17 | #include <media/lirc.h> | 17 | #include <media/lirc.h> |
18 | #include <media/lirc_dev.h> | 18 | #include <media/lirc_dev.h> |
19 | #include <media/ir-core.h> | 19 | #include <media/rc-core.h> |
20 | #include "rc-core-priv.h" | 20 | #include "rc-core-priv.h" |
21 | 21 | ||
22 | #define LIRCBUF_SIZE 256 | 22 | #define LIRCBUF_SIZE 256 |
diff --git a/drivers/media/rc/keymaps/Kconfig b/drivers/media/rc/keymaps/Kconfig index 14b22f58f823..8e615fd55852 100644 --- a/drivers/media/rc/keymaps/Kconfig +++ b/drivers/media/rc/keymaps/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config RC_MAP | 1 | config RC_MAP |
2 | tristate "Compile Remote Controller keymap modules" | 2 | tristate "Compile Remote Controller keymap modules" |
3 | depends on IR_CORE | 3 | depends on RC_CORE |
4 | default y | 4 | default y |
5 | 5 | ||
6 | ---help--- | 6 | ---help--- |
diff --git a/drivers/media/rc/keymaps/rc-lirc.c b/drivers/media/rc/keymaps/rc-lirc.c index 43fcf9035082..9c8577d6e497 100644 --- a/drivers/media/rc/keymaps/rc-lirc.c +++ b/drivers/media/rc/keymaps/rc-lirc.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * (at your option) any later version. | 9 | * (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <media/ir-core.h> | 12 | #include <media/rc-core.h> |
13 | 13 | ||
14 | static struct ir_scancode lirc[] = { | 14 | static struct ir_scancode lirc[] = { |
15 | { }, | 15 | { }, |
diff --git a/drivers/media/rc/mceusb.c b/drivers/media/rc/mceusb.c index 539bec2974b7..db7787ac67a3 100644 --- a/drivers/media/rc/mceusb.c +++ b/drivers/media/rc/mceusb.c | |||
@@ -37,7 +37,7 @@ | |||
37 | #include <linux/slab.h> | 37 | #include <linux/slab.h> |
38 | #include <linux/usb.h> | 38 | #include <linux/usb.h> |
39 | #include <linux/usb/input.h> | 39 | #include <linux/usb/input.h> |
40 | #include <media/ir-core.h> | 40 | #include <media/rc-core.h> |
41 | 41 | ||
42 | #define DRIVER_VERSION "1.91" | 42 | #define DRIVER_VERSION "1.91" |
43 | #define DRIVER_AUTHOR "Jarod Wilson <jarod@wilsonet.com>" | 43 | #define DRIVER_AUTHOR "Jarod Wilson <jarod@wilsonet.com>" |
diff --git a/drivers/media/rc/nuvoton-cir.c b/drivers/media/rc/nuvoton-cir.c index 0ce328f9dacf..bf3f58f7bd7c 100644 --- a/drivers/media/rc/nuvoton-cir.c +++ b/drivers/media/rc/nuvoton-cir.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <linux/interrupt.h> | 32 | #include <linux/interrupt.h> |
33 | #include <linux/sched.h> | 33 | #include <linux/sched.h> |
34 | #include <linux/slab.h> | 34 | #include <linux/slab.h> |
35 | #include <media/ir-core.h> | 35 | #include <media/rc-core.h> |
36 | #include <linux/pci_ids.h> | 36 | #include <linux/pci_ids.h> |
37 | 37 | ||
38 | #include "nuvoton-cir.h" | 38 | #include "nuvoton-cir.h" |
diff --git a/drivers/media/rc/rc-core-priv.h b/drivers/media/rc/rc-core-priv.h index 3616c32d3f87..48065b714d00 100644 --- a/drivers/media/rc/rc-core-priv.h +++ b/drivers/media/rc/rc-core-priv.h | |||
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
20 | #include <linux/spinlock.h> | 20 | #include <linux/spinlock.h> |
21 | #include <media/ir-core.h> | 21 | #include <media/rc-core.h> |
22 | 22 | ||
23 | struct ir_raw_handler { | 23 | struct ir_raw_handler { |
24 | struct list_head list; | 24 | struct list_head list; |
diff --git a/drivers/media/rc/rc-main.c b/drivers/media/rc/rc-main.c index 5b67eea96ebb..d91b62cf1324 100644 --- a/drivers/media/rc/rc-main.c +++ b/drivers/media/rc/rc-main.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * GNU General Public License for more details. | 12 | * GNU General Public License for more details. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <media/ir-core.h> | 15 | #include <media/rc-core.h> |
16 | #include <linux/spinlock.h> | 16 | #include <linux/spinlock.h> |
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/input.h> | 18 | #include <linux/input.h> |
@@ -1103,11 +1103,11 @@ EXPORT_SYMBOL_GPL(rc_unregister_device); | |||
1103 | * Init/exit code for the module. Basically, creates/removes /sys/class/rc | 1103 | * Init/exit code for the module. Basically, creates/removes /sys/class/rc |
1104 | */ | 1104 | */ |
1105 | 1105 | ||
1106 | static int __init ir_core_init(void) | 1106 | static int __init rc_core_init(void) |
1107 | { | 1107 | { |
1108 | int rc = class_register(&ir_input_class); | 1108 | int rc = class_register(&ir_input_class); |
1109 | if (rc) { | 1109 | if (rc) { |
1110 | printk(KERN_ERR "ir_core: unable to register rc class\n"); | 1110 | printk(KERN_ERR "rc_core: unable to register rc class\n"); |
1111 | return rc; | 1111 | return rc; |
1112 | } | 1112 | } |
1113 | 1113 | ||
@@ -1118,18 +1118,18 @@ static int __init ir_core_init(void) | |||
1118 | return 0; | 1118 | return 0; |
1119 | } | 1119 | } |
1120 | 1120 | ||
1121 | static void __exit ir_core_exit(void) | 1121 | static void __exit rc_core_exit(void) |
1122 | { | 1122 | { |
1123 | class_unregister(&ir_input_class); | 1123 | class_unregister(&ir_input_class); |
1124 | ir_unregister_map(&empty_map); | 1124 | ir_unregister_map(&empty_map); |
1125 | } | 1125 | } |
1126 | 1126 | ||
1127 | module_init(ir_core_init); | 1127 | module_init(rc_core_init); |
1128 | module_exit(ir_core_exit); | 1128 | module_exit(rc_core_exit); |
1129 | 1129 | ||
1130 | int ir_core_debug; /* ir_debug level (0,1,2) */ | 1130 | int rc_core_debug; /* ir_debug level (0,1,2) */ |
1131 | EXPORT_SYMBOL_GPL(ir_core_debug); | 1131 | EXPORT_SYMBOL_GPL(rc_core_debug); |
1132 | module_param_named(debug, ir_core_debug, int, 0644); | 1132 | module_param_named(debug, rc_core_debug, int, 0644); |
1133 | 1133 | ||
1134 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); | 1134 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
1135 | MODULE_LICENSE("GPL"); | 1135 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/media/rc/rc-raw.c b/drivers/media/rc/rc-raw.c index ab9b1e4071c0..165412fd240e 100644 --- a/drivers/media/rc/rc-raw.c +++ b/drivers/media/rc/rc-raw.c | |||
@@ -357,7 +357,7 @@ static void init_decoders(struct work_struct *work) | |||
357 | load_lirc_codec(); | 357 | load_lirc_codec(); |
358 | 358 | ||
359 | /* If needed, we may later add some init code. In this case, | 359 | /* If needed, we may later add some init code. In this case, |
360 | it is needed to change the CONFIG_MODULE test at ir-core.h | 360 | it is needed to change the CONFIG_MODULE test at rc-core.h |
361 | */ | 361 | */ |
362 | } | 362 | } |
363 | #endif | 363 | #endif |
diff --git a/drivers/media/rc/streamzap.c b/drivers/media/rc/streamzap.c index f05f5c173fdf..ea2cb636a193 100644 --- a/drivers/media/rc/streamzap.c +++ b/drivers/media/rc/streamzap.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <linux/slab.h> | 36 | #include <linux/slab.h> |
37 | #include <linux/usb.h> | 37 | #include <linux/usb.h> |
38 | #include <linux/usb/input.h> | 38 | #include <linux/usb/input.h> |
39 | #include <media/ir-core.h> | 39 | #include <media/rc-core.h> |
40 | 40 | ||
41 | #define DRIVER_VERSION "1.61" | 41 | #define DRIVER_VERSION "1.61" |
42 | #define DRIVER_NAME "streamzap" | 42 | #define DRIVER_NAME "streamzap" |
diff --git a/drivers/media/rc/winbond-cir.c b/drivers/media/rc/winbond-cir.c index 0ee16ec23bbf..186de5522001 100644 --- a/drivers/media/rc/winbond-cir.c +++ b/drivers/media/rc/winbond-cir.c | |||
@@ -50,7 +50,7 @@ | |||
50 | #include <linux/io.h> | 50 | #include <linux/io.h> |
51 | #include <linux/bitrev.h> | 51 | #include <linux/bitrev.h> |
52 | #include <linux/slab.h> | 52 | #include <linux/slab.h> |
53 | #include <media/ir-core.h> | 53 | #include <media/rc-core.h> |
54 | 54 | ||
55 | #define DRVNAME "winbond-cir" | 55 | #define DRVNAME "winbond-cir" |
56 | 56 | ||