mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
260cbc9af2
Add drivers/video/ti/ folder and move all TI's code in this folder for better maintenance. Signed-off-by: Dario Binacchi <dariobin@libero.it>
14 lines
300 B
C
14 lines
300 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
|
|
*/
|
|
|
|
#ifndef _TILCDC_PANEL_H
|
|
#define _TILCDC_PANEL_H
|
|
|
|
#include "tilcdc.h"
|
|
|
|
int tilcdc_panel_get_display_info(struct udevice *dev,
|
|
struct tilcdc_panel_info *info);
|
|
|
|
#endif /* _TILCDC_PANEL_H */
|