23 lines
500 B
C
23 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);
|
||
|
}
|
||
|
|
||
|
}
|