Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f62de675 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] Rename rc-core files from ir- to rc-



As protocol decoders are specific to InfraRed, keep their names as-is.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 32cf86f6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
ir-common-objs  := ir-functions.o
ir-core-objs	:= ir-keytable.o ir-sysfs.o ir-raw-event.o rc-map.o
rc-core-objs	:= rc-main.o rc-sysfs.o rc-raw.o rc-map.o

obj-y += keymaps/

obj-$(CONFIG_IR_CORE) += ir-core.o
obj-$(CONFIG_IR_CORE) += rc-core.o
obj-$(CONFIG_IR_LEGACY) += ir-common.o
obj-$(CONFIG_LIRC) += lirc_dev.o
obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include <linux/string.h>
#include <linux/jiffies.h>
#include <media/ir-common.h>
#include "ir-core-priv.h"
#include "rc-core-priv.h"

/* -------------------------------------------------------------------------- */

+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 */

#include <linux/bitrev.h>
#include "ir-core-priv.h"
#include "rc-core-priv.h"

#define JVC_NBITS		16		/* dev(8) + func(8) */
#define JVC_UNIT		525000		/* ns */
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
#include <media/lirc.h>
#include <media/lirc_dev.h>
#include <media/ir-core.h>
#include "ir-core-priv.h"
#include "rc-core-priv.h"

#define LIRCBUF_SIZE 256

+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 */

#include <linux/bitrev.h>
#include "ir-core-priv.h"
#include "rc-core-priv.h"

#define NEC_NBITS		32
#define NEC_UNIT		562500  /* ns */
Loading