diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2012-04-09 21:10:32 -0700 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-04-14 07:42:25 -0700 |
commit | f441f8a0a180827e3f7bd705aed9cffba62cebc2 (patch) | |
tree | 8f5560e867a8332fb5efd57f8802dac22f7a31b0 /arch | |
parent | 3cd21f6162e7703adc13c5030f316db9ec6bf5cf (diff) | |
download | talos-op-linux-f441f8a0a180827e3f7bd705aed9cffba62cebc2.tar.gz talos-op-linux-f441f8a0a180827e3f7bd705aed9cffba62cebc2.zip |
ARM: EXYNOS: fix regulator name for NURI board
Regulator names should not contain slash to avoid issues with debugfs.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-exynos/mach-nuri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c index b3982c867c9c..f92ec88b1266 100644 --- a/arch/arm/mach-exynos/mach-nuri.c +++ b/arch/arm/mach-exynos/mach-nuri.c @@ -571,7 +571,7 @@ static struct regulator_init_data __initdata max8997_ldo7_data = { static struct regulator_init_data __initdata max8997_ldo8_data = { .constraints = { - .name = "VUSB/VDAC_3.3V_C210", + .name = "VUSB+VDAC_3.3V_C210", .min_uV = 3300000, .max_uV = 3300000, .valid_ops_mask = REGULATOR_CHANGE_STATUS, |