]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/parade.h
board: axs103 - add maintainer information
[people/ms/u-boot.git] / include / parade.h
1 /*
2 * (C) Copyright 2012 Samsung Electronics
3 * Donghwa Lee <dh09.lee@samsung.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #ifndef __PARADE_H__
9 #define __PARADE_H__
10
11 /* Initialize the Parade dP<->LVDS bridge if present */
12 #ifdef CONFIG_VIDEO_PARADE
13 int parade_init(const void *blob);
14 #else
15 static inline int parade_init(const void *blob) { return -1; }
16 #endif
17
18 #endif /* __PARADE_H__ */