23 lines
391 B
C
23 lines
391 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (c) 2019 MediaTek Inc.
|
||
|
* Author: Joey Pan <joey.pan@mediatek.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __LCM_GPIO_H__
|
||
|
#define __LCM_GPIO_H__
|
||
|
|
||
|
#include "lcm_drv.h"
|
||
|
#include "lcm_common.h"
|
||
|
|
||
|
|
||
|
#if defined(MTK_LCM_DEVICE_TREE_SUPPORT)
|
||
|
#define LCM_GPIO_DEVICE "lcm_mode"
|
||
|
|
||
|
|
||
|
enum LCM_STATUS lcm_gpio_set_data(char type, const struct LCM_DATA_T1 *t1);
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|