diff options
author | Sean Young <sean@mess.org> | 2017-11-02 23:39:16 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-12-14 18:35:23 +0300 |
commit | 42e0442f8a237d3de9ea3f2dd2be2739e6db7fdb (patch) | |
tree | 438851cd2d530b3e80e84ded367bf6ee26cf5a0e /drivers/media/rc/Makefile | |
parent | 8a866fee3909c49738e1c4429a8d2b9bf27e015d (diff) | |
download | linux-42e0442f8a237d3de9ea3f2dd2be2739e6db7fdb.tar.xz |
media: rc: move ir-lirc-codec.c contents into lirc_dev.c
Since removing the lirc kapi, ir-lirc-codec.c only contains lirc fops
so the file name is no longer correct. By moving its content into
lirc_dev.c the ugly extern struct lirc_fops is not longer needed,
and everything lirc related is in one file.
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/rc/Makefile')
-rw-r--r-- | drivers/media/rc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/Makefile b/drivers/media/rc/Makefile index 081b34f97164..0e857816ac2d 100644 --- a/drivers/media/rc/Makefile +++ b/drivers/media/rc/Makefile @@ -4,7 +4,7 @@ obj-y += keymaps/ obj-$(CONFIG_RC_CORE) += rc-core.o rc-core-y := rc-main.o rc-ir-raw.o -rc-core-$(CONFIG_LIRC) += lirc_dev.o ir-lirc-codec.o +rc-core-$(CONFIG_LIRC) += lirc_dev.o obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o obj-$(CONFIG_IR_RC5_DECODER) += ir-rc5-decoder.o obj-$(CONFIG_IR_RC6_DECODER) += ir-rc6-decoder.o |