blob: 1fa2c1d05b5d28ea6fee4fbff36ac2fdac8ab7e1 (
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
|
/*
* 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.
*/
#ifndef __ASM_ARCH_MXC_CCWMX51_DISPLAYS_H__
#define __ASM_ARCH_MXC_CCWMX51_DISPLAYS_H__
#if defined(CONFIG_CCWMX51_LQ070Y3DG3B)
#include "LQ070Y3DG3B.h"
#endif
#if defined(CONFIG_CCWMX51_CUSTOM)
#include "CUSTOM.h"
#endif
struct ccwmx51_lcd_pdata lcd_display_list[] = {
#if defined(CONFIG_CCWMX51_LQ070Y3DG3B)
LQ070Y3DG3B_DISPLAY,
#endif
#if defined(CONFIG_CCWMX51_CUSTOM)
CUSTOM_DISPLAY,
#endif
};
#endif /* __ASM_ARCH_MXC_CCWMX51_DISPLAYS_H__ */
|