Blame view

include/video_link.h 373 Bytes
0257e77fd   Ye Li   MLK-23964-1 video...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /* SPDX-License-Identifier: GPL-2.0+ */
  /*
   * Copyright 2020 NXP
   */
  
  #ifndef __VIDEO_LINK
  #define __VIDEO_LINK
  
  int video_link_init(void);
  
  int video_link_shut_down(void);
  
  struct udevice *video_link_get_next_device(struct udevice *curr_dev);
  
  struct udevice *video_link_get_video_device(void);
  
  int video_link_get_display_timings(struct display_timing *timings);
  
  #endif