diff options
author | David Härdeman <david@hardeman.nu> | 2010-10-29 15:08:12 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:36 -0500 |
commit | 3ffea4988be3f3fa65f2104ba31eff2b5e0e82a0 (patch) | |
tree | 615e94196988cf5c37eeb80953d98fa4d9b91527 /drivers/media/video/Kconfig | |
parent | 62c6503125389763a74911408d984c5dd09eeb97 (diff) |
[media] ir-core: more cleanups of ir-functions.c
cx88 only depends on VIDEO_IR because it needs ir_extract_bits().
Move that function to ir-core.h and make it inline.
Lots of drivers had dependencies on VIDEO_IR when they really
wanted IR_CORE.
The only remaining drivers to depend on VIDEO_IR are bt8xx and
saa7134 (ir_rc5_timer_end is the only function exported by
ir-functions).
Rename VIDEO_IR -> IR_LEGACY to give a hint to anyone writing or
converting drivers to IR_CORE that they do not want a dependency
on IR_LEGACY.
Signed-off-by: David Härdeman <david@hardeman.nu>
Acked-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/Kconfig')
-rw-r--r-- | drivers/media/video/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index 6830d2848bd7..22feac4d1e8f 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig | |||
@@ -96,7 +96,7 @@ config VIDEO_HELPER_CHIPS_AUTO | |||
96 | 96 | ||
97 | config VIDEO_IR_I2C | 97 | config VIDEO_IR_I2C |
98 | tristate "I2C module for IR" if !VIDEO_HELPER_CHIPS_AUTO | 98 | tristate "I2C module for IR" if !VIDEO_HELPER_CHIPS_AUTO |
99 | depends on I2C && VIDEO_IR | 99 | depends on I2C && IR_CORE |
100 | default y | 100 | default y |
101 | ---help--- | 101 | ---help--- |
102 | Most boards have an IR chip directly connected via GPIO. However, | 102 | Most boards have an IR chip directly connected via GPIO. However, |