blob: 38094b81b34bb1551dcbd57870b895d82293b553 (
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
|
/*
* Copyright (C) ST-Ericsson SA 2011
*
* License Terms: GNU General Public License v2
*
* Author: Marcel Tunnissen <marcel.tuennissen@stericsson.com> for ST-Ericsson
*
* MOP500 board specific initialization for regulators
*/
#ifndef __BOARD_MOP500_MCDE_H
#define __BOARD_MOP500_MCDE_H
#include <video/mcde_display.h>
#ifdef CONFIG_DISPLAY_AB8500_TERTIARY
extern struct mcde_display_device tvout_ab8500_display;
#endif
#ifdef CONFIG_DISPLAY_AV8100_TERTIARY
extern struct mcde_display_device av8100_hdmi;
#endif
#endif /* __BOARD_MOP500_MCDE_H */
|