mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-10-07 10:09:34 +00:00
22 lines
362 B
C
22 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__ */
|