1 /*
2  * Driver IDs
3  * Copyright (C) 2012 Vasily Khoruzhick <anarsoul@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 #ifndef __DRIVER_IDS
21 #define __DRIVER_IDS
22 
23 enum {
24 	UPEKTS_ID	= 1,
25 	URU4000_ID	= 2,
26 	AES4000_ID	= 3,
27 	AES2501_ID	= 4,
28 	UPEKTC_ID	= 5,
29 	AES1610_ID	= 6,
30 	FDU2000_ID	= 7,
31 	VCOM5S_ID	= 8,
32 	UPEKSONLY_ID	= 9,
33 	VFS101_ID	= 10,
34 	VFS301_ID	= 11,
35 	AES2550_ID	= 12,
36 	UPEKE2_ID	= 13,
37 	AES1660_ID	= 14,
38 	AES2660_ID	= 15,
39 	AES3500_ID	= 16,
40 	UPEKTC_IMG_ID	= 17,
41 	ETES603_ID	= 18,
42 	VFS5011_ID	= 19,
43 	VFS0050_ID	= 20,
44 };
45 
46 #endif
47