/* SPDX-License-Identifier: GPL-2.0+ */ /* * max77693.h - Driver for the Maxim 77693 * * Copyright (C) 2012 Samsung Electrnoics * SangYoung Son <[email protected]> * * This program is not provided / owned by Maxim Integrated Products. * * This driver is based on max8997.h * * MAX77693 has PMIC, Charger, Flash LED, Haptic, MUIC devices. * The devices share the same I2C bus and included in * this mfd driver. */ #ifndef __LINUX_MFD_MAX77693_H #define __LINUX_MFD_MAX77693_H /* MAX77693 regulator IDs */ enum max77693_regulators { … }; struct max77693_reg_data { … }; struct max77693_muic_platform_data { … }; /* MAX77693 led flash */ /* triggers */ enum max77693_led_trigger { … }; /* trigger types */ enum max77693_led_trigger_type { … }; /* boost modes */ enum max77693_led_boost_mode { … }; /* MAX77693 */ struct max77693_platform_data { … }; #endif /* __LINUX_MFD_MAX77693_H */