Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f8539ddc authored by Kyungmin Park's avatar Kyungmin Park Committed by Samuel Ortiz
Browse files

mfd: LP3974 PMIC support



LP3974 PMIC support. It has same functionality as max8998.

Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent b8e9cf0b
Loading
Loading
Loading
Loading
+6 −5
Original line number Original line Diff line number Diff line
@@ -294,14 +294,15 @@ config MFD_MAX8925
	  to use the functionality of the device.
	  to use the functionality of the device.


config MFD_MAX8998
config MFD_MAX8998
	bool "Maxim Semiconductor MAX8998 PMIC Support"
	bool "Maxim Semiconductor MAX8998/National LP3974 PMIC Support"
	depends on I2C=y
	depends on I2C=y
	select MFD_CORE
	select MFD_CORE
	help
	help
	  Say yes here to support for Maxim Semiconductor MAX8998. This is
	  Say yes here to support for Maxim Semiconductor MAX8998 and
	  a Power Management IC. This driver provies common support for
	  National Semiconductor LP3974. This is a Power Management IC.
	  accessing the device, additional drivers must be enabled in order
	  This driver provies common support for accessing the device,
	  to use the functionality of the device.
	  additional drivers must be enabled in order to use the functionality
	  of the device.


config MFD_WM8400
config MFD_WM8400
	tristate "Support Wolfson Microelectronics WM8400"
	tristate "Support Wolfson Microelectronics WM8400"
+3 −2
Original line number Original line Diff line number Diff line
@@ -126,6 +126,7 @@ static int max8998_i2c_remove(struct i2c_client *i2c)


static const struct i2c_device_id max8998_i2c_id[] = {
static const struct i2c_device_id max8998_i2c_id[] = {
	{ "max8998", 0 },
	{ "max8998", 0 },
	{ "lp3974", 0 },
	{ }
	{ }
};
};
MODULE_DEVICE_TABLE(i2c, max8998_i2c_id);
MODULE_DEVICE_TABLE(i2c, max8998_i2c_id);