blob: 250e060114a7fe6fd3035d5d0e1758c3703f2327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* arch/arm/mach-s3c2443/displays/displays.h
*
* Copyright (C) 2009 by Digi International Inc.
* All rights reserved.
*
* 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.
*/
#include <mach/s3c2443-fb.h>
#if defined(CONFIG_CC9M2443_VGA)
#include "VGA.h"
#endif
#if defined(CONFIG_CC9M2443_LQ057Q3DC12I)
#include "LQ057Q3DC12I.h"
#endif
#if defined(CONFIG_CC9M2443_LQ064V3DG01)
#include "LQ064V3DG01.h"
#endif
#if defined(CONFIG_CC9M2443_CUSTOM)
#include "CUSTOM.h"
#endif
/* List of supported displays */
struct s3c2443fb_display display_list[] = {
#if defined(CONFIG_CC9M2443_VGA)
VGA_DISPLAY,
#endif
#if defined(CONFIG_CC9M2443_LQ057Q3DC12I)
LQ057Q3DC12I_DISPLAY,
#endif
#if defined(CONFIG_CC9M2443_LQ064V3DG01)
LQ064V3DG01_DISPLAY,
#endif
#if defined(CONFIG_CC9M2443_CUSTOM)
CUSTOM_DISPLAY,
#endif
};
|