kernel-brax3-ubuntu-touch/include/linux/mfd/mt6338.h
erascape f319b992b1 kernel-5.15: Initial import brax3 UT kernel
* halium configs enabled

Signed-off-by: erascape <erascape@proton.me>
2025-09-23 15:17:10 +00:00

21 lines
362 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2021 MediaTek Inc.
*/
#ifndef __MT6338_H__
#define __MT6338_H__
#include <linux/regmap.h>
#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__ */