| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 1 | /* | 
 | 2 |     v4l2 chip identifiers header | 
 | 3 |  | 
 | 4 |     This header provides a list of chip identifiers that can be returned | 
| Hans Verkuil | aecde8b | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 5 |     through the VIDIOC_DBG_G_CHIP_IDENT ioctl. | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 6 |  | 
 | 7 |     Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> | 
 | 8 |  | 
 | 9 |     This program is free software; you can redistribute it and/or modify | 
 | 10 |     it under the terms of the GNU General Public License as published by | 
 | 11 |     the Free Software Foundation; either version 2 of the License, or | 
 | 12 |     (at your option) any later version. | 
 | 13 |  | 
 | 14 |     This program is distributed in the hope that it will be useful, | 
 | 15 |     but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 16 |     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 17 |     GNU General Public License for more details. | 
 | 18 |  | 
 | 19 |     You should have received a copy of the GNU General Public License | 
 | 20 |     along with this program; if not, write to the Free Software | 
 | 21 |     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 22 |  */ | 
 | 23 |  | 
 | 24 | #ifndef V4L2_CHIP_IDENT_H_ | 
 | 25 | #define V4L2_CHIP_IDENT_H_ | 
 | 26 |  | 
| Hans Verkuil | aecde8b | 2008-12-30 07:14:19 -0300 | [diff] [blame] | 27 | /* VIDIOC_DBG_G_CHIP_IDENT: identifies the actual chip installed on the board */ | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 28 | enum { | 
 | 29 | 	/* general idents: reserved range 0-49 */ | 
 | 30 | 	V4L2_IDENT_NONE      = 0,       /* No chip matched */ | 
 | 31 | 	V4L2_IDENT_AMBIGUOUS = 1,       /* Match too general, multiple chips matched */ | 
 | 32 | 	V4L2_IDENT_UNKNOWN   = 2,       /* Chip found, but cannot identify */ | 
 | 33 |  | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 34 | 	/* module tvaudio: reserved range 50-99 */ | 
 | 35 | 	V4L2_IDENT_TVAUDIO = 50,	/* A tvaudio chip, unknown which it is exactly */ | 
 | 36 |  | 
 | 37 | 	/* module saa7110: just ident 100 */ | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 38 | 	V4L2_IDENT_SAA7110 = 100, | 
 | 39 |  | 
| Hans Verkuil | e794684 | 2009-02-19 12:24:27 -0300 | [diff] [blame] | 40 | 	/* module saa7115: reserved range 101-149 */ | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 41 | 	V4L2_IDENT_SAA7111 = 101, | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 42 | 	V4L2_IDENT_SAA7113 = 103, | 
 | 43 | 	V4L2_IDENT_SAA7114 = 104, | 
 | 44 | 	V4L2_IDENT_SAA7115 = 105, | 
 | 45 | 	V4L2_IDENT_SAA7118 = 108, | 
 | 46 |  | 
 | 47 | 	/* module saa7127: reserved range 150-199 */ | 
 | 48 | 	V4L2_IDENT_SAA7127 = 157, | 
 | 49 | 	V4L2_IDENT_SAA7129 = 159, | 
 | 50 |  | 
 | 51 | 	/* module cx25840: reserved range 200-249 */ | 
 | 52 | 	V4L2_IDENT_CX25836 = 236, | 
 | 53 | 	V4L2_IDENT_CX25837 = 237, | 
 | 54 | 	V4L2_IDENT_CX25840 = 240, | 
 | 55 | 	V4L2_IDENT_CX25841 = 241, | 
 | 56 | 	V4L2_IDENT_CX25842 = 242, | 
 | 57 | 	V4L2_IDENT_CX25843 = 243, | 
 | 58 |  | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 59 | 	/* OmniVision sensors: reserved range 250-299 */ | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 60 | 	V4L2_IDENT_OV7670 = 250, | 
| Kuninori Morimoto | aeabc88 | 2008-12-18 11:05:49 -0300 | [diff] [blame] | 61 | 	V4L2_IDENT_OV7720 = 251, | 
| Kuninori Morimoto | 3cac2ca | 2008-12-18 11:07:11 -0300 | [diff] [blame] | 62 | 	V4L2_IDENT_OV7725 = 252, | 
| Brian Johnson | 26e744b | 2009-07-19 05:52:58 -0300 | [diff] [blame] | 63 | 	V4L2_IDENT_OV7660 = 253, | 
 | 64 | 	V4L2_IDENT_OV9650 = 254, | 
 | 65 | 	V4L2_IDENT_OV9655 = 255, | 
 | 66 | 	V4L2_IDENT_SOI968 = 256, | 
| Marek Vasut | 8d64827 | 2009-09-23 04:59:24 -0300 | [diff] [blame] | 67 | 	V4L2_IDENT_OV9640 = 257, | 
| Hans Verkuil | 1b5888c | 2007-04-27 12:31:23 -0300 | [diff] [blame] | 68 |  | 
| Hans Verkuil | 1b8dac1 | 2009-02-07 11:18:05 -0300 | [diff] [blame] | 69 | 	/* module saa7146: reserved range 300-309 */ | 
 | 70 | 	V4L2_IDENT_SAA7146 = 300, | 
 | 71 |  | 
| Andy Walls | fa3e703 | 2009-02-16 02:23:25 -0300 | [diff] [blame] | 72 | 	/* Conexant MPEG encoder/decoders: reserved range 400-420 */ | 
 | 73 | 	V4L2_IDENT_CX23418_843 = 403, /* Integrated A/V Decoder on the '418 */ | 
| Hans Verkuil | 1b5888c | 2007-04-27 12:31:23 -0300 | [diff] [blame] | 74 | 	V4L2_IDENT_CX23415 = 415, | 
 | 75 | 	V4L2_IDENT_CX23416 = 416, | 
| Andy Walls | f56db93 | 2009-09-26 22:07:10 -0300 | [diff] [blame] | 76 | 	V4L2_IDENT_CX23417 = 417, | 
| Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 77 | 	V4L2_IDENT_CX23418 = 418, | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 78 |  | 
| Devin Heitmueller | d9109be | 2009-03-11 03:00:58 -0300 | [diff] [blame] | 79 | 	/* module au0828 */ | 
 | 80 | 	V4L2_IDENT_AU0828 = 828, | 
 | 81 |  | 
| Hans Verkuil | 2b80a19 | 2009-02-13 19:38:10 -0300 | [diff] [blame] | 82 | 	/* module indycam: just ident 2000 */ | 
 | 83 | 	V4L2_IDENT_INDYCAM = 2000, | 
 | 84 |  | 
| Hans Verkuil | c2179ad | 2009-02-19 06:36:36 -0300 | [diff] [blame] | 85 | 	/* module bt819: reserved range 810-819 */ | 
 | 86 | 	V4L2_IDENT_BT815A = 815, | 
 | 87 | 	V4L2_IDENT_BT817A = 817, | 
 | 88 | 	V4L2_IDENT_BT819A = 819, | 
 | 89 |  | 
| Hans Verkuil | a91f56e | 2009-02-19 08:54:36 -0300 | [diff] [blame] | 90 | 	/* module bt856: just ident 856 */ | 
 | 91 | 	V4L2_IDENT_BT856 = 856, | 
 | 92 |  | 
| Hans Verkuil | 8e4e1d8 | 2009-02-19 04:49:29 -0300 | [diff] [blame] | 93 | 	/* module bt866: just ident 866 */ | 
 | 94 | 	V4L2_IDENT_BT866 = 866, | 
 | 95 |  | 
| Hans Verkuil | 0750e97 | 2009-02-19 11:50:27 -0300 | [diff] [blame] | 96 | 	/* module ks0127: reserved range 1120-1129 */ | 
 | 97 | 	V4L2_IDENT_KS0122S = 1122, | 
 | 98 | 	V4L2_IDENT_KS0127  = 1127, | 
 | 99 | 	V4L2_IDENT_KS0127B = 1128, | 
 | 100 |  | 
| Hans Verkuil | ac24743 | 2007-07-27 06:56:50 -0300 | [diff] [blame] | 101 | 	/* module vp27smpx: just ident 2700 */ | 
 | 102 | 	V4L2_IDENT_VP27SMPX = 2700, | 
 | 103 |  | 
| Hans Verkuil | 7e5eaad | 2009-02-19 14:36:53 -0300 | [diff] [blame] | 104 | 	/* module vpx3220: reserved range: 3210-3229 */ | 
 | 105 | 	V4L2_IDENT_VPX3214C = 3214, | 
 | 106 | 	V4L2_IDENT_VPX3216B = 3216, | 
 | 107 | 	V4L2_IDENT_VPX3220A = 3220, | 
 | 108 |  | 
| Mauro Carvalho Chehab | bc97430 | 2008-12-22 20:34:18 -0300 | [diff] [blame] | 109 | 	/* module tvp5150 */ | 
 | 110 | 	V4L2_IDENT_TVP5150 = 5150, | 
 | 111 |  | 
| Hans Verkuil | 1b8dac1 | 2009-02-07 11:18:05 -0300 | [diff] [blame] | 112 | 	/* module saa5246a: just ident 5246 */ | 
 | 113 | 	V4L2_IDENT_SAA5246A = 5246, | 
 | 114 |  | 
 | 115 | 	/* module saa5249: just ident 5249 */ | 
 | 116 | 	V4L2_IDENT_SAA5249 = 5249, | 
 | 117 |  | 
| Hans Verkuil | 6fb377f | 2007-12-18 19:40:44 -0300 | [diff] [blame] | 118 | 	/* module cs5345: just ident 5345 */ | 
 | 119 | 	V4L2_IDENT_CS5345 = 5345, | 
 | 120 |  | 
| Hans Verkuil | 1b8dac1 | 2009-02-07 11:18:05 -0300 | [diff] [blame] | 121 | 	/* module tea6415c: just ident 6415 */ | 
 | 122 | 	V4L2_IDENT_TEA6415C = 6415, | 
 | 123 |  | 
 | 124 | 	/* module tea6420: just ident 6420 */ | 
 | 125 | 	V4L2_IDENT_TEA6420 = 6420, | 
 | 126 |  | 
| Hans Verkuil | f1f8c90 | 2009-02-11 19:28:30 -0300 | [diff] [blame] | 127 | 	/* module saa6588: just ident 6588 */ | 
 | 128 | 	V4L2_IDENT_SAA6588 = 6588, | 
 | 129 |  | 
| Hans Verkuil | e281db58 | 2008-08-08 12:43:59 -0300 | [diff] [blame] | 130 | 	/* module saa6752hs: reserved range 6750-6759 */ | 
 | 131 | 	V4L2_IDENT_SAA6752HS = 6752, | 
 | 132 | 	V4L2_IDENT_SAA6752HS_AC3 = 6753, | 
 | 133 |  | 
| Richard Röjfors | eea85b0 | 2009-09-22 10:14:39 -0300 | [diff] [blame] | 134 | 	/* modules tef6862: just ident 6862 */ | 
 | 135 | 	V4L2_IDENT_TEF6862 = 6862, | 
 | 136 |  | 
| Hans Verkuil | 7d9ef21 | 2009-02-19 14:47:22 -0300 | [diff] [blame] | 137 | 	/* module adv7170: just ident 7170 */ | 
 | 138 | 	V4L2_IDENT_ADV7170 = 7170, | 
 | 139 |  | 
 | 140 | 	/* module adv7175: just ident 7175 */ | 
 | 141 | 	V4L2_IDENT_ADV7175 = 7175, | 
 | 142 |  | 
| Richard Röjfors | 6789cb5 | 2009-09-18 21:17:20 -0300 | [diff] [blame] | 143 | 	/* module adv7180: just ident 7180 */ | 
 | 144 | 	V4L2_IDENT_ADV7180 = 7180, | 
 | 145 |  | 
| Hans Verkuil | 780d8e1 | 2009-02-19 13:24:47 -0300 | [diff] [blame] | 146 | 	/* module saa7185: just ident 7185 */ | 
 | 147 | 	V4L2_IDENT_SAA7185 = 7185, | 
 | 148 |  | 
| Hans Verkuil | 8340ff4 | 2009-02-13 19:58:12 -0300 | [diff] [blame] | 149 | 	/* module saa7191: just ident 7191 */ | 
 | 150 | 	V4L2_IDENT_SAA7191 = 7191, | 
 | 151 |  | 
| Chaithrika U S | 40199c5 | 2009-05-07 09:29:25 -0300 | [diff] [blame] | 152 | 	/* module ths7303: just ident 7303 */ | 
 | 153 | 	V4L2_IDENT_THS7303 = 7303, | 
 | 154 |  | 
| Chaithrika U S | 06e61f8 | 2009-05-07 09:30:01 -0300 | [diff] [blame] | 155 | 	/* module adv7343: just ident 7343 */ | 
 | 156 | 	V4L2_IDENT_ADV7343 = 7343, | 
 | 157 |  | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 158 | 	/* module wm8739: just ident 8739 */ | 
 | 159 | 	V4L2_IDENT_WM8739 = 8739, | 
 | 160 |  | 
 | 161 | 	/* module wm8775: just ident 8775 */ | 
 | 162 | 	V4L2_IDENT_WM8775 = 8775, | 
 | 163 |  | 
| Hans Verkuil | 1b8dac1 | 2009-02-07 11:18:05 -0300 | [diff] [blame] | 164 | 	/* module tda9840: just ident 9840 */ | 
 | 165 | 	V4L2_IDENT_TDA9840 = 9840, | 
 | 166 |  | 
| Hans Verkuil | 69d94f7 | 2009-03-18 13:25:54 -0300 | [diff] [blame] | 167 | 	/* module cafe_ccic, just ident 8801 */ | 
 | 168 | 	V4L2_IDENT_CAFE = 8801, | 
 | 169 |  | 
| Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 170 | 	/* module mt9v011, just ident 8243 */ | 
 | 171 | 	V4L2_IDENT_MT9V011 = 8243, | 
 | 172 |  | 
| Andy Walls | f56db93 | 2009-09-26 22:07:10 -0300 | [diff] [blame] | 173 | 	/* module cx23885 and cx25840 */ | 
 | 174 | 	V4L2_IDENT_CX23885    = 8850, | 
 | 175 | 	V4L2_IDENT_CX23885_AV = 8851, /* Integrated A/V decoder */ | 
 | 176 | 	V4L2_IDENT_CX23887    = 8870, | 
 | 177 | 	V4L2_IDENT_CX23887_AV = 8871, /* Integrated A/V decoder */ | 
 | 178 | 	V4L2_IDENT_CX23888    = 8880, | 
 | 179 | 	V4L2_IDENT_CX23888_AV = 8881, /* Integrated A/V decoder */ | 
 | 180 | 	V4L2_IDENT_CX23888_IR = 8882, /* Integrated infrared controller */ | 
 | 181 |  | 
| Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 182 | 	/* module tw9910: just ident 9910 */ | 
 | 183 | 	V4L2_IDENT_TW9910 = 9910, | 
 | 184 |  | 
| Brian Johnson | 26e744b | 2009-07-19 05:52:58 -0300 | [diff] [blame] | 185 | 	/* module sn9c20x: just ident 10000 */ | 
 | 186 | 	V4L2_IDENT_SN9C20X = 10000, | 
 | 187 |  | 
| Andy Walls | f56db93 | 2009-09-26 22:07:10 -0300 | [diff] [blame] | 188 | 	/* module cx231xx and cx25840 */ | 
 | 189 | 	V4L2_IDENT_CX2310X_AV = 23099, /* Integrated A/V decoder; not in '100 */ | 
 | 190 | 	V4L2_IDENT_CX23100    = 23100, | 
 | 191 | 	V4L2_IDENT_CX23101    = 23101, | 
 | 192 | 	V4L2_IDENT_CX23102    = 23102, | 
 | 193 |  | 
| Hans Verkuil | 38f9d30 | 2008-07-23 05:09:15 -0300 | [diff] [blame] | 194 | 	/* module msp3400: reserved range 34000-34999 and 44000-44999 */ | 
 | 195 | 	V4L2_IDENT_MSPX4XX  = 34000, /* generic MSPX4XX identifier, only | 
 | 196 | 					use internally (tveeprom.c). */ | 
 | 197 |  | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 198 | 	V4L2_IDENT_MSP3400B = 34002, | 
 | 199 | 	V4L2_IDENT_MSP3410B = 34102, | 
 | 200 |  | 
 | 201 | 	V4L2_IDENT_MSP3400C = 34003, | 
 | 202 | 	V4L2_IDENT_MSP3410C = 34103, | 
 | 203 |  | 
 | 204 | 	V4L2_IDENT_MSP3400D = 34004, | 
 | 205 | 	V4L2_IDENT_MSP3410D = 34104, | 
 | 206 | 	V4L2_IDENT_MSP3405D = 34054, | 
 | 207 | 	V4L2_IDENT_MSP3415D = 34154, | 
 | 208 | 	V4L2_IDENT_MSP3407D = 34074, | 
 | 209 | 	V4L2_IDENT_MSP3417D = 34174, | 
 | 210 |  | 
 | 211 | 	V4L2_IDENT_MSP3400G = 34007, | 
 | 212 | 	V4L2_IDENT_MSP3410G = 34107, | 
 | 213 | 	V4L2_IDENT_MSP3420G = 34207, | 
 | 214 | 	V4L2_IDENT_MSP3430G = 34307, | 
 | 215 | 	V4L2_IDENT_MSP3440G = 34407, | 
 | 216 | 	V4L2_IDENT_MSP3450G = 34507, | 
 | 217 | 	V4L2_IDENT_MSP3460G = 34607, | 
 | 218 |  | 
 | 219 | 	V4L2_IDENT_MSP3401G = 34017, | 
 | 220 | 	V4L2_IDENT_MSP3411G = 34117, | 
 | 221 | 	V4L2_IDENT_MSP3421G = 34217, | 
 | 222 | 	V4L2_IDENT_MSP3431G = 34317, | 
 | 223 | 	V4L2_IDENT_MSP3441G = 34417, | 
 | 224 | 	V4L2_IDENT_MSP3451G = 34517, | 
 | 225 | 	V4L2_IDENT_MSP3461G = 34617, | 
 | 226 |  | 
 | 227 | 	V4L2_IDENT_MSP3402G = 34027, | 
 | 228 | 	V4L2_IDENT_MSP3412G = 34127, | 
 | 229 | 	V4L2_IDENT_MSP3422G = 34227, | 
 | 230 | 	V4L2_IDENT_MSP3442G = 34427, | 
 | 231 | 	V4L2_IDENT_MSP3452G = 34527, | 
 | 232 |  | 
 | 233 | 	V4L2_IDENT_MSP3405G = 34057, | 
 | 234 | 	V4L2_IDENT_MSP3415G = 34157, | 
 | 235 | 	V4L2_IDENT_MSP3425G = 34257, | 
 | 236 | 	V4L2_IDENT_MSP3435G = 34357, | 
 | 237 | 	V4L2_IDENT_MSP3445G = 34457, | 
 | 238 | 	V4L2_IDENT_MSP3455G = 34557, | 
 | 239 | 	V4L2_IDENT_MSP3465G = 34657, | 
 | 240 |  | 
 | 241 | 	V4L2_IDENT_MSP3407G = 34077, | 
 | 242 | 	V4L2_IDENT_MSP3417G = 34177, | 
 | 243 | 	V4L2_IDENT_MSP3427G = 34277, | 
 | 244 | 	V4L2_IDENT_MSP3437G = 34377, | 
 | 245 | 	V4L2_IDENT_MSP3447G = 34477, | 
 | 246 | 	V4L2_IDENT_MSP3457G = 34577, | 
 | 247 | 	V4L2_IDENT_MSP3467G = 34677, | 
 | 248 |  | 
| Hans Verkuil | 38f9d30 | 2008-07-23 05:09:15 -0300 | [diff] [blame] | 249 | 	/* module msp3400: reserved range 34000-34999 and 44000-44999 */ | 
| Hans Verkuil | 74cab31 | 2007-04-27 12:31:26 -0300 | [diff] [blame] | 250 | 	V4L2_IDENT_MSP4400G = 44007, | 
 | 251 | 	V4L2_IDENT_MSP4410G = 44107, | 
 | 252 | 	V4L2_IDENT_MSP4420G = 44207, | 
 | 253 | 	V4L2_IDENT_MSP4440G = 44407, | 
 | 254 | 	V4L2_IDENT_MSP4450G = 44507, | 
 | 255 |  | 
 | 256 | 	V4L2_IDENT_MSP4408G = 44087, | 
 | 257 | 	V4L2_IDENT_MSP4418G = 44187, | 
 | 258 | 	V4L2_IDENT_MSP4428G = 44287, | 
 | 259 | 	V4L2_IDENT_MSP4448G = 44487, | 
 | 260 | 	V4L2_IDENT_MSP4458G = 44587, | 
| Guennadi Liakhovetski | a7c7402 | 2008-04-22 14:42:03 -0300 | [diff] [blame] | 261 |  | 
 | 262 | 	/* Micron CMOS sensor chips: 45000-45099 */ | 
 | 263 | 	V4L2_IDENT_MT9M001C12ST		= 45000, | 
 | 264 | 	V4L2_IDENT_MT9M001C12STM	= 45005, | 
| Robert Jarzmik | 9cc6493 | 2008-08-14 11:36:37 -0300 | [diff] [blame] | 265 | 	V4L2_IDENT_MT9M111		= 45007, | 
| Mike Rapoport | 9b9fd6c | 2008-12-18 11:42:54 -0300 | [diff] [blame] | 266 | 	V4L2_IDENT_MT9M112		= 45008, | 
| Guennadi Liakhovetski | a7c7402 | 2008-04-22 14:42:03 -0300 | [diff] [blame] | 267 | 	V4L2_IDENT_MT9V022IX7ATC	= 45010, /* No way to detect "normal" I77ATx */ | 
 | 268 | 	V4L2_IDENT_MT9V022IX7ATM	= 45015, /* and "lead free" IA7ATx chips */ | 
| Guennadi Liakhovetski | 4e96fd0 | 2008-12-29 06:04:59 -0300 | [diff] [blame] | 269 | 	V4L2_IDENT_MT9T031		= 45020, | 
| Kuninori Morimoto | 858424b | 2009-12-11 11:53:55 -0300 | [diff] [blame] | 270 | 	V4L2_IDENT_MT9T111		= 45021, | 
 | 271 | 	V4L2_IDENT_MT9T112		= 45022, | 
| Brian Johnson | 26e744b | 2009-07-19 05:52:58 -0300 | [diff] [blame] | 272 | 	V4L2_IDENT_MT9V111		= 45031, | 
 | 273 | 	V4L2_IDENT_MT9V112		= 45032, | 
 | 274 |  | 
 | 275 | 	/* HV7131R CMOS sensor: just ident 46000 */ | 
 | 276 | 	V4L2_IDENT_HV7131R		= 46000, | 
| Hans Verkuil | 69d94f7 | 2009-03-18 13:25:54 -0300 | [diff] [blame] | 277 |  | 
 | 278 | 	/* module cs53132a: just ident 53132 */ | 
 | 279 | 	V4L2_IDENT_CS53l32A = 53132, | 
 | 280 |  | 
 | 281 | 	/* module upd64031a: just ident 64031 */ | 
 | 282 | 	V4L2_IDENT_UPD64031A = 64031, | 
 | 283 |  | 
 | 284 | 	/* module upd64083: just ident 64083 */ | 
 | 285 | 	V4L2_IDENT_UPD64083 = 64083, | 
 | 286 |  | 
 | 287 | 	/* module m52790: just ident 52790 */ | 
 | 288 | 	V4L2_IDENT_M52790 = 52790, | 
| Guennadi Liakhovetski | 8f37cf2 | 2009-10-05 12:54:04 -0300 | [diff] [blame] | 289 |  | 
 | 290 | 	/* Sharp RJ54N1CB0C, 0xCB0C = 51980 */ | 
 | 291 | 	V4L2_IDENT_RJ54N1CB0C = 51980, | 
| Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 292 | }; | 
 | 293 |  | 
 | 294 | #endif |