Merge branch 'for-linus-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/mason...
[deliverable/linux.git] / drivers / staging / rtl8188eu / include / HalVerDef.h
1 /******************************************************************************
2 *
3 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 *
19 ******************************************************************************/
20 #ifndef __HAL_VERSION_DEF_H__
21 #define __HAL_VERSION_DEF_H__
22
23 enum HAL_CHIP_TYPE {
24 TEST_CHIP = 0,
25 NORMAL_CHIP = 1,
26 FPGA = 2,
27 };
28
29 enum HAL_CUT_VERSION {
30 A_CUT_VERSION = 0,
31 B_CUT_VERSION = 1,
32 C_CUT_VERSION = 2,
33 D_CUT_VERSION = 3,
34 E_CUT_VERSION = 4,
35 F_CUT_VERSION = 5,
36 G_CUT_VERSION = 6,
37 };
38
39 enum HAL_VENDOR {
40 CHIP_VENDOR_TSMC = 0,
41 CHIP_VENDOR_UMC = 1,
42 };
43
44 struct HAL_VERSION {
45 enum HAL_CHIP_TYPE ChipType;
46 enum HAL_CUT_VERSION CUTVersion;
47 enum HAL_VENDOR VendorType;
48 };
49
50 #endif
This page took 0.031916 seconds and 6 git commands to generate.