Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
bf7b8113
Commit
bf7b8113
authored
Jul 01, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'regulator/topic/drvdata' into regulator-next
parents
71c2dca1
405c5400
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
29 deletions
+0
-29
drivers/regulator/88pm8607.c
drivers/regulator/88pm8607.c
+0
-1
drivers/regulator/lp8788-buck.c
drivers/regulator/lp8788-buck.c
+0
-1
drivers/regulator/lp8788-ldo.c
drivers/regulator/lp8788-ldo.c
+0
-2
drivers/regulator/max8925-regulator.c
drivers/regulator/max8925-regulator.c
+0
-1
drivers/regulator/mc13783-regulator.c
drivers/regulator/mc13783-regulator.c
+0
-2
drivers/regulator/mc13892-regulator.c
drivers/regulator/mc13892-regulator.c
+0
-2
drivers/regulator/pcap-regulator.c
drivers/regulator/pcap-regulator.c
+0
-1
drivers/regulator/pcf50633-regulator.c
drivers/regulator/pcf50633-regulator.c
+0
-1
drivers/regulator/tps65217-regulator.c
drivers/regulator/tps65217-regulator.c
+0
-2
drivers/regulator/virtual.c
drivers/regulator/virtual.c
+0
-2
drivers/regulator/wm831x-dcdc.c
drivers/regulator/wm831x-dcdc.c
+0
-7
drivers/regulator/wm831x-isink.c
drivers/regulator/wm831x-isink.c
+0
-2
drivers/regulator/wm831x-ldo.c
drivers/regulator/wm831x-ldo.c
+0
-2
drivers/regulator/wm8400-regulator.c
drivers/regulator/wm8400-regulator.c
+0
-1
drivers/regulator/wm8994-regulator.c
drivers/regulator/wm8994-regulator.c
+0
-2
No files found.
drivers/regulator/88pm8607.c
View file @
bf7b8113
...
...
@@ -406,7 +406,6 @@ static int pm8607_regulator_remove(struct platform_device *pdev)
{
struct
pm8607_regulator_info
*
info
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
info
->
regulator
);
return
0
;
}
...
...
drivers/regulator/lp8788-buck.c
View file @
bf7b8113
...
...
@@ -533,7 +533,6 @@ static int lp8788_buck_remove(struct platform_device *pdev)
{
struct
lp8788_buck
*
buck
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
buck
->
regulator
);
return
0
;
...
...
drivers/regulator/lp8788-ldo.c
View file @
bf7b8113
...
...
@@ -561,7 +561,6 @@ static int lp8788_dldo_remove(struct platform_device *pdev)
{
struct
lp8788_ldo
*
ldo
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
ldo
->
regulator
);
return
0
;
...
...
@@ -622,7 +621,6 @@ static int lp8788_aldo_remove(struct platform_device *pdev)
{
struct
lp8788_ldo
*
ldo
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
ldo
->
regulator
);
return
0
;
...
...
drivers/regulator/max8925-regulator.c
View file @
bf7b8113
...
...
@@ -327,7 +327,6 @@ static int max8925_regulator_remove(struct platform_device *pdev)
{
struct
regulator_dev
*
rdev
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
rdev
);
return
0
;
...
...
drivers/regulator/mc13783-regulator.c
View file @
bf7b8113
...
...
@@ -466,8 +466,6 @@ static int mc13783_regulator_remove(struct platform_device *pdev)
struct
mc13xxx_regulator_priv
*
priv
=
platform_get_drvdata
(
pdev
);
int
i
;
platform_set_drvdata
(
pdev
,
NULL
);
for
(
i
=
0
;
i
<
priv
->
num_regulators
;
i
++
)
regulator_unregister
(
priv
->
regulators
[
i
]);
...
...
drivers/regulator/mc13892-regulator.c
View file @
bf7b8113
...
...
@@ -636,8 +636,6 @@ static int mc13892_regulator_remove(struct platform_device *pdev)
struct
mc13xxx_regulator_priv
*
priv
=
platform_get_drvdata
(
pdev
);
int
i
;
platform_set_drvdata
(
pdev
,
NULL
);
for
(
i
=
0
;
i
<
priv
->
num_regulators
;
i
++
)
regulator_unregister
(
priv
->
regulators
[
i
]);
...
...
drivers/regulator/pcap-regulator.c
View file @
bf7b8113
...
...
@@ -260,7 +260,6 @@ static int pcap_regulator_remove(struct platform_device *pdev)
struct
regulator_dev
*
rdev
=
platform_get_drvdata
(
pdev
);
regulator_unregister
(
rdev
);
platform_set_drvdata
(
pdev
,
NULL
);
return
0
;
}
...
...
drivers/regulator/pcf50633-regulator.c
View file @
bf7b8113
...
...
@@ -106,7 +106,6 @@ static int pcf50633_regulator_remove(struct platform_device *pdev)
{
struct
regulator_dev
*
rdev
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
rdev
);
return
0
;
...
...
drivers/regulator/tps65217-regulator.c
View file @
bf7b8113
...
...
@@ -405,8 +405,6 @@ static int tps65217_regulator_remove(struct platform_device *pdev)
for
(
i
=
0
;
i
<
TPS65217_NUM_REGULATOR
;
i
++
)
regulator_unregister
(
tps
->
rdev
[
i
]);
platform_set_drvdata
(
pdev
,
NULL
);
return
0
;
}
...
...
drivers/regulator/virtual.c
View file @
bf7b8113
...
...
@@ -330,8 +330,6 @@ static int regulator_virtual_remove(struct platform_device *pdev)
if
(
drvdata
->
enabled
)
regulator_disable
(
drvdata
->
regulator
);
platform_set_drvdata
(
pdev
,
NULL
);
return
0
;
}
...
...
drivers/regulator/wm831x-dcdc.c
View file @
bf7b8113
...
...
@@ -567,8 +567,6 @@ static int wm831x_buckv_remove(struct platform_device *pdev)
struct
wm831x_dcdc
*
dcdc
=
platform_get_drvdata
(
pdev
);
struct
wm831x
*
wm831x
=
dcdc
->
wm831x
;
platform_set_drvdata
(
pdev
,
NULL
);
free_irq
(
wm831x_irq
(
wm831x
,
platform_get_irq_byname
(
pdev
,
"HC"
)),
dcdc
);
free_irq
(
wm831x_irq
(
wm831x
,
platform_get_irq_byname
(
pdev
,
"UV"
)),
...
...
@@ -714,8 +712,6 @@ static int wm831x_buckp_remove(struct platform_device *pdev)
{
struct
wm831x_dcdc
*
dcdc
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
free_irq
(
wm831x_irq
(
dcdc
->
wm831x
,
platform_get_irq_byname
(
pdev
,
"UV"
)),
dcdc
);
regulator_unregister
(
dcdc
->
regulator
);
...
...
@@ -849,8 +845,6 @@ static int wm831x_boostp_remove(struct platform_device *pdev)
{
struct
wm831x_dcdc
*
dcdc
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
free_irq
(
wm831x_irq
(
dcdc
->
wm831x
,
platform_get_irq_byname
(
pdev
,
"UV"
)),
dcdc
);
regulator_unregister
(
dcdc
->
regulator
);
...
...
@@ -940,7 +934,6 @@ static int wm831x_epe_remove(struct platform_device *pdev)
{
struct
wm831x_dcdc
*
dcdc
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
dcdc
->
regulator
);
return
0
;
...
...
drivers/regulator/wm831x-isink.c
View file @
bf7b8113
...
...
@@ -225,8 +225,6 @@ static int wm831x_isink_remove(struct platform_device *pdev)
{
struct
wm831x_isink
*
isink
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
free_irq
(
wm831x_irq
(
isink
->
wm831x
,
platform_get_irq
(
pdev
,
0
)),
isink
);
regulator_unregister
(
isink
->
regulator
);
...
...
drivers/regulator/wm831x-ldo.c
View file @
bf7b8113
...
...
@@ -338,8 +338,6 @@ static int wm831x_gp_ldo_remove(struct platform_device *pdev)
{
struct
wm831x_ldo
*
ldo
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
free_irq
(
wm831x_irq
(
ldo
->
wm831x
,
platform_get_irq_byname
(
pdev
,
"UV"
)),
ldo
);
regulator_unregister
(
ldo
->
regulator
);
...
...
drivers/regulator/wm8400-regulator.c
View file @
bf7b8113
...
...
@@ -250,7 +250,6 @@ static int wm8400_regulator_remove(struct platform_device *pdev)
{
struct
regulator_dev
*
rdev
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
rdev
);
return
0
;
...
...
drivers/regulator/wm8994-regulator.c
View file @
bf7b8113
...
...
@@ -185,8 +185,6 @@ static int wm8994_ldo_remove(struct platform_device *pdev)
{
struct
wm8994_ldo
*
ldo
=
platform_get_drvdata
(
pdev
);
platform_set_drvdata
(
pdev
,
NULL
);
regulator_unregister
(
ldo
->
regulator
);
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment