ARM: S5PV210: Fix regulator names

Since commit 1130e5b3ff4 regulators are exported to debugfs. The names
of the regulators that contains slash ('/') causes an ops during kernel
boot. This patch fixes this issue.

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>

authored by Marek Szyprowski and committed by Kukjin Kim d1061331 979f395d

+6 -6
+3 -3
arch/arm/mach-s5pv210/mach-aquila.c
··· 149 149 150 150 static struct regulator_init_data aquila_ldo3_data = { 151 151 .constraints = { 152 - .name = "VUSB/MIPI_1.1V", 152 + .name = "VUSB+MIPI_1.1V", 153 153 .min_uV = 1100000, 154 154 .max_uV = 1100000, 155 155 .apply_uV = 1, ··· 197 197 198 198 static struct regulator_init_data aquila_ldo8_data = { 199 199 .constraints = { 200 - .name = "VUSB/VADC_3.3V", 200 + .name = "VUSB+VADC_3.3V", 201 201 .min_uV = 3300000, 202 202 .max_uV = 3300000, 203 203 .apply_uV = 1, ··· 207 207 208 208 static struct regulator_init_data aquila_ldo9_data = { 209 209 .constraints = { 210 - .name = "VCC/VCAM_2.8V", 210 + .name = "VCC+VCAM_2.8V", 211 211 .min_uV = 2800000, 212 212 .max_uV = 2800000, 213 213 .apply_uV = 1,
+3 -3
arch/arm/mach-s5pv210/mach-goni.c
··· 288 288 289 289 static struct regulator_init_data goni_ldo3_data = { 290 290 .constraints = { 291 - .name = "VUSB/MIPI_1.1V", 291 + .name = "VUSB+MIPI_1.1V", 292 292 .min_uV = 1100000, 293 293 .max_uV = 1100000, 294 294 .apply_uV = 1, ··· 337 337 338 338 static struct regulator_init_data goni_ldo8_data = { 339 339 .constraints = { 340 - .name = "VUSB/VADC_3.3V", 340 + .name = "VUSB+VADC_3.3V", 341 341 .min_uV = 3300000, 342 342 .max_uV = 3300000, 343 343 .apply_uV = 1, ··· 347 347 348 348 static struct regulator_init_data goni_ldo9_data = { 349 349 .constraints = { 350 - .name = "VCC/VCAM_2.8V", 350 + .name = "VCC+VCAM_2.8V", 351 351 .min_uV = 2800000, 352 352 .max_uV = 2800000, 353 353 .apply_uV = 1,