Lines Matching defs:ircode
519 u8 ircode[4];
521 if (cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4) < 0)
524 if (ircode[2] || ircode[3])
526 RC_SCANCODE_NEC(~ircode[2] & 0xff, ircode[3]), 0);
532 u8 ircode[4];
536 .buf = ircode,
543 if (ircode[1] || ircode[2])
545 RC_SCANCODE_NEC(~ircode[1] & 0xff, ircode[2]), 0);
551 u8 ircode[2];
553 if (cxusb_ctrl_msg(d, 0x10, NULL, 0, ircode, 2) < 0)
556 if (ircode[0] || ircode[1])
558 RC_SCANCODE_RC5(ircode[0], ircode[1]), 0);
990 u8 ircode[4];
995 .buf = ircode,
1021 if (ircode[0] == 0 && ircode[1] == 0)
1023 if (ircode[2] + ircode[3] != 0xff) {