aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-06-28 11:43:25 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-08-02 13:54:45 -0400
commita9e55ea9774cc87434b386a7fba63d96af32792d (patch)
tree6ec78e9b8e3d7f4bb93d1471f5d368fec009d567
parent4403b7b4eabd3f307c21bfadebe7a1d951d1478b (diff)
V4L/DVB: ir-core: Rename sysfs protocols nomenclature to rc-5 and rc-6
While rc-5 and rc-6 protocols are generally abreviated as "rc5" and "rc6", previous sysfs nodes uses rc-5 and rc-6 for the Philips protocols. This is consistent with the protocol nomenclature given by the original Philips spec: "Remote control system RC-5" (doc. Nr. 9398 706 23011). Also, rc5 is the name of a widely known cryptography protocol. So, the better is to keep referring to those protocols as "rc-5" and "rc-6". Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/IR/ir-sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/IR/ir-sysfs.c b/drivers/media/IR/ir-sysfs.c
index f897c483e7bc..c0c4dc250599 100644
--- a/drivers/media/IR/ir-sysfs.c
+++ b/drivers/media/IR/ir-sysfs.c
@@ -38,9 +38,9 @@ static struct {
38 char *name; 38 char *name;
39} proto_names[] = { 39} proto_names[] = {
40 { IR_TYPE_UNKNOWN, "unknown" }, 40 { IR_TYPE_UNKNOWN, "unknown" },
41 { IR_TYPE_RC5, "rc5" }, 41 { IR_TYPE_RC5, "rc-5" },
42 { IR_TYPE_NEC, "nec" }, 42 { IR_TYPE_NEC, "nec" },
43 { IR_TYPE_RC6, "rc6" }, 43 { IR_TYPE_RC6, "rc-6" },
44 { IR_TYPE_JVC, "jvc" }, 44 { IR_TYPE_JVC, "jvc" },
45 { IR_TYPE_SONY, "sony" }, 45 { IR_TYPE_SONY, "sony" },
46}; 46};