repo.or.cz
/
linux-2.6
/
linux-mips
/
linux-dm7025.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MIPS] Fix handling of trap and breakpoint instructions
[linux-2.6/linux-mips/linux-dm7025.git]
/
include
/
asm-arm
/
arch-omap
/
lcd_mipid.h
blob
f8fbc4801e5256ee9d4424cc4fc5a2dd34547811
1
#ifndef __LCD_MIPID_H
2
#define __LCD_MIPID_H
3
4
enum
mipid_test_num
{
5
MIPID_TEST_RGB_LINES
,
6
};
7
8
enum
mipid_test_result
{
9
MIPID_TEST_SUCCESS
,
10
MIPID_TEST_INVALID
,
11
MIPID_TEST_FAILED
,
12
};
13
14
#ifdef __KERNEL__
15
16
struct
mipid_platform_data
{
17
int
nreset_gpio
;
18
int
data_lines
;
19
void
(*
shutdown
)(
struct
mipid_platform_data
*
pdata
);
20
};
21
22
#endif
23
24
#endif