exynos5420: fix compilation without parade video
Not all exynos 5420 based devices with an LCD also have a parade LVDS bridge. So make sure compilation doesn't break if CONFIG_LCD is enabled and CONFIG_VIDEO_PARADE is not. As a side-effect move the parade functions from the exynos system header file to its own file. Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
307e90e617
commit
a7b99204a0
@ -41,7 +41,4 @@ void set_usbhost_mode(unsigned int mode);
|
|||||||
void set_system_display_ctrl(void);
|
void set_system_display_ctrl(void);
|
||||||
int exynos_lcd_early_init(const void *blob);
|
int exynos_lcd_early_init(const void *blob);
|
||||||
|
|
||||||
/* Initialize the Parade dP<->LVDS bridge if present */
|
|
||||||
int parade_init(const void *blob);
|
|
||||||
|
|
||||||
#endif /* _EXYNOS4_SYSTEM_H */
|
#endif /* _EXYNOS4_SYSTEM_H */
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
#include <lcd.h>
|
#include <lcd.h>
|
||||||
|
#include <parade.h>
|
||||||
#include <spi.h>
|
#include <spi.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
|
18
include/parade.h
Normal file
18
include/parade.h
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/*
|
||||||
|
* (C) Copyright 2012 Samsung Electronics
|
||||||
|
* Donghwa Lee <dh09.lee@samsung.com>
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0+
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __PARADE_H__
|
||||||
|
#define __PARADE_H__
|
||||||
|
|
||||||
|
/* Initialize the Parade dP<->LVDS bridge if present */
|
||||||
|
#ifdef CONFIG_VIDEO_PARADE
|
||||||
|
int parade_init(const void *blob);
|
||||||
|
#else
|
||||||
|
static inline int parade_init(const void *blob) { return -1; }
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __PARADE_H__ */
|
Loading…
Reference in New Issue
Block a user