diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-02-26 21:38:58 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2018-02-26 21:38:58 +0100 |
commit | 133390fe497b8c3b63e84383300c03a13b007e08 (patch) | |
tree | 6e6af6b8f2bf18e7840f4910ac4a562ce39d0127 /arch | |
parent | ARM: orion: fix orion_ge00_switch_board_info initialization (diff) | |
download | linux-133390fe497b8c3b63e84383300c03a13b007e08.tar.xz linux-133390fe497b8c3b63e84383300c03a13b007e08.zip |
ARM: omap2: set CONFIG_LIRC=y in defconfig
The CONFIG_LIRC symbol has changed from 'tristate' to 'bool, so we now
get a warning for omap2plus_defconfig:
arch/arm/configs/omap2plus_defconfig:322:warning: symbol value 'm' invalid for LIRC
This changes the file to mark the symbol as built-in to get rid of the
warning.
Fixes: a60d64b15c20 ("media: lirc: lirc interface should not be a raw decoder")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/configs/omap2plus_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig index 2f145c4af93a..92674f247a12 100644 --- a/arch/arm/configs/omap2plus_defconfig +++ b/arch/arm/configs/omap2plus_defconfig @@ -319,7 +319,7 @@ CONFIG_MEDIA_CAMERA_SUPPORT=y CONFIG_RC_CORE=m CONFIG_MEDIA_CONTROLLER=y CONFIG_VIDEO_V4L2_SUBDEV_API=y -CONFIG_LIRC=m +CONFIG_LIRC=y CONFIG_RC_DEVICES=y CONFIG_IR_RX51=m CONFIG_V4L_PLATFORM_DRIVERS=y |