diff options
author | Simon Glass | 2015-07-02 18:16:02 -0600 |
---|---|---|
committer | Simon Glass | 2015-08-05 21:06:12 -0600 |
commit | b5ffa4fdcb656b8995d6800f9c10dad76a44d38b (patch) | |
tree | 409ee2b0a80583e45b59e7f8415caa4042814dba | |
parent | f615e6a64d23952d3c68b9ac92b4ef5fa5ebdf8a (diff) |
dm: pmic: max77686: Correct a few nits
The driver name should not have a space in it. Also the regulator names
should match the case of the device tree. Fix these problems.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
-rw-r--r-- | drivers/power/pmic/max77686.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/power/pmic/max77686.c b/drivers/power/pmic/max77686.c index 3523b4a2de2..dc5a54a6a3a 100644 --- a/drivers/power/pmic/max77686.c +++ b/drivers/power/pmic/max77686.c @@ -17,8 +17,8 @@ DECLARE_GLOBAL_DATA_PTR; static const struct pmic_child_info pmic_children_info[] = { - { .prefix = "ldo", .driver = MAX77686_LDO_DRIVER }, - { .prefix = "buck", .driver = MAX77686_BUCK_DRIVER }, + { .prefix = "LDO", .driver = MAX77686_LDO_DRIVER }, + { .prefix = "BUCK", .driver = MAX77686_BUCK_DRIVER }, { }, }; @@ -84,7 +84,7 @@ static const struct udevice_id max77686_ids[] = { }; U_BOOT_DRIVER(pmic_max77686) = { - .name = "max77686 pmic", + .name = "max77686_pmic", .id = UCLASS_PMIC, .of_match = max77686_ids, .bind = max77686_bind, |