Blame view

bootloader/u-boot_2015_04/include/parade.h 392 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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__ */