The patch titled v4l: enlarge the size of ir-key table to 256 has been removed from the -mm tree. Its filename was v4l-enlarge-the-size-of-ir-key-table-to-256.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ Subject: v4l: enlarge the size of ir-key table to 256 From: Tony Wan <wankai@xxxxxxxx> Some IR-remote will produce key codes larger than 128. Enlarge the size IR_KEYTAB_SIZE to 256 to enable all the keys. Signed-off-by: Tony Wan <wankai@xxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/media/ir-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/media/ir-common.h~v4l-enlarge-the-size-of-ir-key-table-to-256 include/media/ir-common.h --- a/include/media/ir-common.h~v4l-enlarge-the-size-of-ir-key-table-to-256 +++ a/include/media/ir-common.h @@ -31,7 +31,7 @@ #define IR_TYPE_OTHER 99 #define IR_KEYTAB_TYPE u32 -#define IR_KEYTAB_SIZE 128 // enougth for rc5, probably need more some day ... +#define IR_KEYTAB_SIZE 256 // some remote needs 8-bit keycodes #define IR_KEYCODE(tab,code) (((unsigned)code < IR_KEYTAB_SIZE) \ ? tab[code] : KEY_RESERVED) _ Patches currently in -mm which might be from wankai@xxxxxxxx are v4l-saa7134-add-support-for-10moons-tm300-card.patch v4l-saa7134-enable-ir-remote-for-10moons-tm300-card.patch v4l-enlarge-the-size-of-ir-key-table-to-256.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html