blob: 765994f58816476639cc5874d11a8142d2b13ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* linux/arch/arm/mach-s5pv210/include/mach/mach-p1.h
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __MACH_P1_H_
#define __MACH_P1_H_
#define P1_HWREV_REV06 0x0C
#define P1_HWREV_REV07 0x0D
#define P1_HWREV_REV08 0x0E
#define P1_HWREV_REV09 0x0F
#define P1_HWREV_REV10 0x10
#define P1_HWREV_REV11 0x11
#define P1_HWREV_REV12 0x12
extern unsigned int HWREV;
#endif // __MACH_P1_H_
|