1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun #ifndef _CS4271_PRIV_H 3*4882a593Smuzhiyun #define _CS4271_PRIV_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #include <linux/regmap.h> 6*4882a593Smuzhiyun 7*4882a593Smuzhiyun extern const struct of_device_id cs4271_dt_ids[]; 8*4882a593Smuzhiyun extern const struct regmap_config cs4271_regmap_config; 9*4882a593Smuzhiyun 10*4882a593Smuzhiyun int cs4271_probe(struct device *dev, struct regmap *regmap); 11*4882a593Smuzhiyun 12*4882a593Smuzhiyun #endif 13