16 lines
356 B
C
16 lines
356 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
* Author: Joey Pan <joey.pan@mediatek.com>
|
|
*/
|
|
|
|
#ifndef _DISP_CUST_H_
|
|
#define _DISP_CUST_H_
|
|
|
|
void set_lcm(struct LCM_setting_table_V3 *para_tbl,
|
|
unsigned int size, bool hs);
|
|
int read_lcm(unsigned char cmd, unsigned char *buf,
|
|
unsigned char buf_size, bool sendhs);
|
|
|
|
#endif
|