Lines Matching +full:0 +full:x0107

18 		 "enable (1) or disable (0) debug messages."
21 #define deb_decode(args...) dprintk(dvb_usb_af9005_remote_debug,0x01,args)
25 {0x01b7, KEY_POWER},
26 {0x01a7, KEY_VOLUMEUP},
27 {0x0187, KEY_CHANNELUP},
28 {0x017f, KEY_MUTE},
29 {0x01bf, KEY_VOLUMEDOWN},
30 {0x013f, KEY_CHANNELDOWN},
31 {0x01df, KEY_1},
32 {0x015f, KEY_2},
33 {0x019f, KEY_3},
34 {0x011f, KEY_4},
35 {0x01ef, KEY_5},
36 {0x016f, KEY_6},
37 {0x01af, KEY_7},
38 {0x0127, KEY_8},
39 {0x0107, KEY_9},
40 {0x01cf, KEY_ZOOM},
41 {0x014f, KEY_0},
42 {0x018f, KEY_GOTO}, /* marked jump on the remote */
44 {0x00bd, KEY_POWER},
45 {0x007d, KEY_VOLUMEUP},
46 {0x00fd, KEY_CHANNELUP},
47 {0x009d, KEY_MUTE},
48 {0x005d, KEY_VOLUMEDOWN},
49 {0x00dd, KEY_CHANNELDOWN},
50 {0x00ad, KEY_1},
51 {0x006d, KEY_2},
52 {0x00ed, KEY_3},
53 {0x008d, KEY_4},
54 {0x004d, KEY_5},
55 {0x00cd, KEY_6},
56 {0x00b5, KEY_7},
57 {0x0075, KEY_8},
58 {0x00f5, KEY_9},
59 {0x0095, KEY_ZOOM},
60 {0x0055, KEY_0},
61 {0x00d5, KEY_GOTO}, /* marked jump on the remote */
82 mark = (u16) (data[0] << 8) + data[1]; in af9005_rc_decode()
85 for (i = 0; i < ARRAY_SIZE(repeatable_keys); i++) { in af9005_rc_decode()
91 return 0; in af9005_rc_decode()
95 return 0; in af9005_rc_decode()
97 result = 0; in af9005_rc_decode()
108 if ((result & 0xff000000) != 0xfe000000) { in af9005_rc_decode()
110 ("doesn't start with 0xfe, ignored\n"); in af9005_rc_decode()
111 return 0; in af9005_rc_decode()
113 cust = (result >> 16) & 0xff; in af9005_rc_decode()
114 dat = (result >> 8) & 0xff; in af9005_rc_decode()
115 invdat = (~result) & 0xff; in af9005_rc_decode()
118 return 0; in af9005_rc_decode()
120 for (i = 0; i < rc_map_af9005_table_size; i++) { in af9005_rc_decode()
127 return 0; in af9005_rc_decode()
133 return 0; in af9005_rc_decode()