diff options
author | Donggeun Kim <dg77.kim@samsung.com> | 2011-12-14 18:23:55 +0900 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-01-09 00:37:41 +0100 |
commit | f6dd2db940a1a0c6b9f7112109115c8243ba752b (patch) | |
tree | 0134500204ff28847d1bf30dcc8c52a62487a665 /drivers/mfd | |
parent | 1e351a95b6fda20e16b64a698bae505765080308 (diff) | |
download | blackbird-op-linux-f6dd2db940a1a0c6b9f7112109115c8243ba752b.tar.gz blackbird-op-linux-f6dd2db940a1a0c6b9f7112109115c8243ba752b.zip |
mfd: Add platform data and devices for MAX8997 LED control
MAX8997 device does not support LED control function of it.
To enable MAX8997-LED driver, platform data and devices for LED are updated.
Signed-off-by: Donggeun Kim <dg77.kim@samsung.com>
Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/max8997.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mfd/max8997.c b/drivers/mfd/max8997.c index 5be53ae9b61c..cb83a7ab53e7 100644 --- a/drivers/mfd/max8997.c +++ b/drivers/mfd/max8997.c @@ -43,7 +43,8 @@ static struct mfd_cell max8997_devs[] = { { .name = "max8997-battery", }, { .name = "max8997-haptic", }, { .name = "max8997-muic", }, - { .name = "max8997-flash", }, + { .name = "max8997-led", .id = 1 }, + { .name = "max8997-led", .id = 2 }, }; int max8997_read_reg(struct i2c_client *i2c, u8 reg, u8 *dest) |