/* SPDX-License-Identifier: GPL-2.0+ */ /* * max77686.h - Driver for the Maxim 77686/802 * * Copyright (C) 2012 Samsung Electrnoics * Chiwoong Byun <[email protected]> * * This driver is based on max8997.h * * MAX77686 has PMIC, RTC devices. * The devices share the same I2C bus and included in * this mfd driver. */ #ifndef __LINUX_MFD_MAX77686_H #define __LINUX_MFD_MAX77686_H #include <linux/regulator/consumer.h> /* MAX77686 regulator IDs */ enum max77686_regulators { … }; /* MAX77802 regulator IDs */ enum max77802_regulators { … }; enum max77686_opmode { … }; #endif /* __LINUX_MFD_MAX77686_H */