Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1061331 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Kukjin Kim
Browse files

ARM: S5PV210: Fix regulator names



Since commit 1130e5b3 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: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 979f395d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ static struct regulator_init_data aquila_ldo2_data = {

static struct regulator_init_data aquila_ldo3_data = {
	.constraints	= {
		.name		= "VUSB/MIPI_1.1V",
		.name		= "VUSB+MIPI_1.1V",
		.min_uV		= 1100000,
		.max_uV		= 1100000,
		.apply_uV	= 1,
@@ -197,7 +197,7 @@ static struct regulator_init_data aquila_ldo7_data = {

static struct regulator_init_data aquila_ldo8_data = {
	.constraints	= {
		.name		= "VUSB/VADC_3.3V",
		.name		= "VUSB+VADC_3.3V",
		.min_uV		= 3300000,
		.max_uV		= 3300000,
		.apply_uV	= 1,
@@ -207,7 +207,7 @@ static struct regulator_init_data aquila_ldo8_data = {

static struct regulator_init_data aquila_ldo9_data = {
	.constraints	= {
		.name		= "VCC/VCAM_2.8V",
		.name		= "VCC+VCAM_2.8V",
		.min_uV		= 2800000,
		.max_uV		= 2800000,
		.apply_uV	= 1,
+3 −3
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ static struct regulator_init_data goni_ldo2_data = {

static struct regulator_init_data goni_ldo3_data = {
	.constraints	= {
		.name		= "VUSB/MIPI_1.1V",
		.name		= "VUSB+MIPI_1.1V",
		.min_uV		= 1100000,
		.max_uV		= 1100000,
		.apply_uV	= 1,
@@ -337,7 +337,7 @@ static struct regulator_init_data goni_ldo7_data = {

static struct regulator_init_data goni_ldo8_data = {
	.constraints	= {
		.name		= "VUSB/VADC_3.3V",
		.name		= "VUSB+VADC_3.3V",
		.min_uV		= 3300000,
		.max_uV		= 3300000,
		.apply_uV	= 1,
@@ -347,7 +347,7 @@ static struct regulator_init_data goni_ldo8_data = {

static struct regulator_init_data goni_ldo9_data = {
	.constraints	= {
		.name		= "VCC/VCAM_2.8V",
		.name		= "VCC+VCAM_2.8V",
		.min_uV		= 2800000,
		.max_uV		= 2800000,
		.apply_uV	= 1,