Skip to content

Commit

Permalink
mfd: LP3974 PMIC support
Browse files Browse the repository at this point in the history
LP3974 PMIC support. It has same functionality as max8998.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Kyungmin Park authored and Samuel Ortiz committed Oct 28, 2010
1 parent b8e9cf0 commit f8539dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
11 changes: 6 additions & 5 deletions drivers/mfd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -294,14 +294,15 @@ config MFD_MAX8925
to use the functionality of the device.

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

config MFD_WM8400
tristate "Support Wolfson Microelectronics WM8400"
Expand Down
5 changes: 3 additions & 2 deletions drivers/mfd/max8998.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ static int max8998_i2c_remove(struct i2c_client *i2c)
}

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

Expand Down

0 comments on commit f8539dd

Please sign in to comment.