1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #ifndef _PANEL_ILITEK_ILI9806E_CORE_H 4 #define _PANEL_ILITEK_ILI9806E_CORE_H 5 6 void *ili9806e_get_transport(struct drm_panel *panel); 7 int ili9806e_power_off(struct device *dev); 8 int ili9806e_power_on(struct device *dev); 9 10 int ili9806e_probe(struct device *dev, void *transport, 11 const struct drm_panel_funcs *funcs, 12 int connector_type); 13 void ili9806e_remove(struct device *dev); 14 15 #endif /* _PANEL_ILITEK_ILI9806E_CORE_H */ 16