/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2021 MediaTek Inc. */ #ifndef __MT6338_H__ #define __MT6338_H__ #include #define MT6338_PMIC_SLAVEID (0x6B) struct mt6338_pmic_info { struct i2c_client *i2c; struct device *dev; struct regmap *regmap; unsigned int chip_rev; struct mutex io_lock; }; #endif /* __MT6338_H__ */