Skip to content

Commit 7a3dc43

Browse files
author
Fox Snowpatch
committed
1 parent a85c72f commit 7a3dc43

7 files changed

+11
-11
lines changed

drivers/macintosh/therm_windtunnel.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ static struct platform_driver therm_of_driver = {
499499
.of_match_table = therm_of_match,
500500
},
501501
.probe = therm_of_probe,
502-
.remove_new = therm_of_remove,
502+
.remove = therm_of_remove,
503503
};
504504

505505
struct apple_thermal_info {

drivers/macintosh/windfarm_pm112.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ static void wf_pm112_remove(struct platform_device *dev)
669669

670670
static struct platform_driver wf_pm112_driver = {
671671
.probe = wf_pm112_probe,
672-
.remove_new = wf_pm112_remove,
672+
.remove = wf_pm112_remove,
673673
.driver = {
674674
.name = "windfarm",
675675
},

drivers/macintosh/windfarm_pm121.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ static void pm121_remove(struct platform_device *ddev)
999999

10001000
static struct platform_driver pm121_driver = {
10011001
.probe = pm121_probe,
1002-
.remove_new = pm121_remove,
1002+
.remove = pm121_remove,
10031003
.driver = {
10041004
.name = "windfarm",
10051005
.bus = &platform_bus_type,

drivers/macintosh/windfarm_pm72.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -781,9 +781,9 @@ static void wf_pm72_remove(struct platform_device *dev)
781781
}
782782

783783
static struct platform_driver wf_pm72_driver = {
784-
.probe = wf_pm72_probe,
785-
.remove_new = wf_pm72_remove,
786-
.driver = {
784+
.probe = wf_pm72_probe,
785+
.remove = wf_pm72_remove,
786+
.driver = {
787787
.name = "windfarm",
788788
},
789789
};

drivers/macintosh/windfarm_pm81.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ static void wf_smu_remove(struct platform_device *ddev)
765765

766766
static struct platform_driver wf_smu_driver = {
767767
.probe = wf_smu_probe,
768-
.remove_new = wf_smu_remove,
768+
.remove = wf_smu_remove,
769769
.driver = {
770770
.name = "windfarm",
771771
},

drivers/macintosh/windfarm_pm91.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ static void wf_smu_remove(struct platform_device *ddev)
695695

696696
static struct platform_driver wf_smu_driver = {
697697
.probe = wf_smu_probe,
698-
.remove_new = wf_smu_remove,
698+
.remove = wf_smu_remove,
699699
.driver = {
700700
.name = "windfarm",
701701
},

drivers/macintosh/windfarm_rm31.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -674,9 +674,9 @@ static void wf_rm31_remove(struct platform_device *dev)
674674
}
675675

676676
static struct platform_driver wf_rm31_driver = {
677-
.probe = wf_rm31_probe,
678-
.remove_new = wf_rm31_remove,
679-
.driver = {
677+
.probe = wf_rm31_probe,
678+
.remove = wf_rm31_remove,
679+
.driver = {
680680
.name = "windfarm",
681681
},
682682
};

0 commit comments

Comments
 (0)