Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336908
b: refs/heads/master
c: fd10911
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 28, 2012
1 parent 32b38e3 commit d9a0f49
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4740f73fe5388ab5d22d552d2a0dacc62418a70c
refs/heads/master: fd1091125a1d11fcc635749d0d3dec36904a7a48
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-ab8500.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static struct platform_driver ab8500_pwm_driver = {
.owner = THIS_MODULE,
},
.probe = ab8500_pwm_probe,
.remove = __devexit_p(ab8500_pwm_remove),
.remove = ab8500_pwm_remove,
};
module_platform_driver(ab8500_pwm_driver);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-bfin.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static struct platform_driver bfin_pwm_driver = {
.name = "bfin-pwm",
},
.probe = bfin_pwm_probe,
.remove = __devexit_p(bfin_pwm_remove),
.remove = bfin_pwm_remove,
};

module_platform_driver(bfin_pwm_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ static struct platform_driver imx_pwm_driver = {
.of_match_table = of_match_ptr(imx_pwm_dt_ids),
},
.probe = imx_pwm_probe,
.remove = __devexit_p(imx_pwm_remove),
.remove = imx_pwm_remove,
};

module_platform_driver(imx_pwm_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-jz4740.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static struct platform_driver jz4740_pwm_driver = {
.owner = THIS_MODULE,
},
.probe = jz4740_pwm_probe,
.remove = __devexit_p(jz4740_pwm_remove),
.remove = jz4740_pwm_remove,
};
module_platform_driver(jz4740_pwm_driver);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-lpc32xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static struct platform_driver lpc32xx_pwm_driver = {
.of_match_table = of_match_ptr(lpc32xx_pwm_dt_ids),
},
.probe = lpc32xx_pwm_probe,
.remove = __devexit_p(lpc32xx_pwm_remove),
.remove = lpc32xx_pwm_remove,
};
module_platform_driver(lpc32xx_pwm_driver);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-mxs.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ static struct platform_driver mxs_pwm_driver = {
.of_match_table = of_match_ptr(mxs_pwm_dt_ids),
},
.probe = mxs_pwm_probe,
.remove = __devexit_p(mxs_pwm_remove),
.remove = mxs_pwm_remove,
};
module_platform_driver(mxs_pwm_driver);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-puv3.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static struct platform_driver puv3_pwm_driver = {
.name = "PKUnity-v3-PWM",
},
.probe = pwm_probe,
.remove = __devexit_p(pwm_remove),
.remove = pwm_remove,
};
module_platform_driver(puv3_pwm_driver);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-pxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ static struct platform_driver pwm_driver = {
.owner = THIS_MODULE,
},
.probe = pwm_probe,
.remove = __devexit_p(pwm_remove),
.remove = pwm_remove,
.id_table = pwm_id_table,
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-samsung.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ static struct platform_driver s3c_pwm_driver = {
.owner = THIS_MODULE,
},
.probe = s3c_pwm_probe,
.remove = __devexit_p(s3c_pwm_remove),
.remove = s3c_pwm_remove,
.suspend = s3c_pwm_suspend,
.resume = s3c_pwm_resume,
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static struct platform_driver tegra_pwm_driver = {
.of_match_table = of_match_ptr(tegra_pwm_of_match),
},
.probe = tegra_pwm_probe,
.remove = __devexit_p(tegra_pwm_remove),
.remove = tegra_pwm_remove,
};

module_platform_driver(tegra_pwm_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-tiecap.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static struct platform_driver ecap_pwm_driver = {
.name = "ecap",
},
.probe = ecap_pwm_probe,
.remove = __devexit_p(ecap_pwm_remove),
.remove = ecap_pwm_remove,
};

module_platform_driver(ecap_pwm_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-tiehrpwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ static struct platform_driver ehrpwm_pwm_driver = {
.name = "ehrpwm",
},
.probe = ehrpwm_pwm_probe,
.remove = __devexit_p(ehrpwm_pwm_remove),
.remove = ehrpwm_pwm_remove,
};

module_platform_driver(ehrpwm_pwm_driver);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/pwm/pwm-twl6030.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static struct platform_driver twl6030_pwm_driver = {
.name = "twl6030-pwm",
},
.probe = twl6030_pwm_probe,
.remove = __devexit_p(twl6030_pwm_remove),
.remove = twl6030_pwm_remove,
};
module_platform_driver(twl6030_pwm_driver);

Expand Down

0 comments on commit d9a0f49

Please sign in to comment.