oleavr-rgl-a500-mini-linux-.../drivers/video/sunxi/disp/lcd/lcd_panel_cfg.c
Ole André Vadla Ravnås 169c65d57e Initial commit
2022-05-07 01:01:45 +02:00

22 lines
500 B
C

/* display driver
*
* Copyright (c) 2017 Allwinnertech Co., Ltd.
* Author: Tyle <tyle@allwinnertech.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include "lcd_panel_cfg.h"
void LCD_set_panel_funs(void)
{
int i;
for (i = 0; panel_array[i] != NULL; i++) {
sunxi_lcd_set_panel_funs(panel_array[i]->name,
&panel_array[i]->func);
}
}