1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun 3*4882a593Smuzhiyun #ifndef _PANEL_SAMSUNG_S6E63M0_H 4*4882a593Smuzhiyun #define _PANEL_SAMSUNG_S6E63M0_H 5*4882a593Smuzhiyun 6*4882a593Smuzhiyun int s6e63m0_probe(struct device *dev, 7*4882a593Smuzhiyun int (*dcs_read)(struct device *dev, const u8 cmd, u8 *val), 8*4882a593Smuzhiyun int (*dcs_write)(struct device *dev, const u8 *data, 9*4882a593Smuzhiyun size_t len), 10*4882a593Smuzhiyun bool dsi_mode); 11*4882a593Smuzhiyun int s6e63m0_remove(struct device *dev); 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun #endif /* _PANEL_SAMSUNG_S6E63M0_H */ 14