File tree 7 files changed +11
-11
lines changed
7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ static struct platform_driver therm_of_driver = {
499
499
.of_match_table = therm_of_match ,
500
500
},
501
501
.probe = therm_of_probe ,
502
- .remove_new = therm_of_remove ,
502
+ .remove = therm_of_remove ,
503
503
};
504
504
505
505
struct apple_thermal_info {
Original file line number Diff line number Diff line change @@ -669,7 +669,7 @@ static void wf_pm112_remove(struct platform_device *dev)
669
669
670
670
static struct platform_driver wf_pm112_driver = {
671
671
.probe = wf_pm112_probe ,
672
- .remove_new = wf_pm112_remove ,
672
+ .remove = wf_pm112_remove ,
673
673
.driver = {
674
674
.name = "windfarm" ,
675
675
},
Original file line number Diff line number Diff line change @@ -999,7 +999,7 @@ static void pm121_remove(struct platform_device *ddev)
999
999
1000
1000
static struct platform_driver pm121_driver = {
1001
1001
.probe = pm121_probe ,
1002
- .remove_new = pm121_remove ,
1002
+ .remove = pm121_remove ,
1003
1003
.driver = {
1004
1004
.name = "windfarm" ,
1005
1005
.bus = & platform_bus_type ,
Original file line number Diff line number Diff line change @@ -781,9 +781,9 @@ static void wf_pm72_remove(struct platform_device *dev)
781
781
}
782
782
783
783
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 = {
787
787
.name = "windfarm" ,
788
788
},
789
789
};
Original file line number Diff line number Diff line change @@ -765,7 +765,7 @@ static void wf_smu_remove(struct platform_device *ddev)
765
765
766
766
static struct platform_driver wf_smu_driver = {
767
767
.probe = wf_smu_probe ,
768
- .remove_new = wf_smu_remove ,
768
+ .remove = wf_smu_remove ,
769
769
.driver = {
770
770
.name = "windfarm" ,
771
771
},
Original file line number Diff line number Diff line change @@ -695,7 +695,7 @@ static void wf_smu_remove(struct platform_device *ddev)
695
695
696
696
static struct platform_driver wf_smu_driver = {
697
697
.probe = wf_smu_probe ,
698
- .remove_new = wf_smu_remove ,
698
+ .remove = wf_smu_remove ,
699
699
.driver = {
700
700
.name = "windfarm" ,
701
701
},
Original file line number Diff line number Diff line change @@ -674,9 +674,9 @@ static void wf_rm31_remove(struct platform_device *dev)
674
674
}
675
675
676
676
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 = {
680
680
.name = "windfarm" ,
681
681
},
682
682
};
You can’t perform that action at this time.
0 commit comments