Sjoerd Simons | a7b9920 | 2014-12-05 18:12:22 +0100 | [diff] [blame] | 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__ */ |