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