File tree Expand file tree Collapse file tree 12 files changed +12
-12
lines changed Expand file tree Collapse file tree 12 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -684,7 +684,7 @@ static struct i2c_driver cdce706_i2c_driver = {
684
684
.name = "cdce706" ,
685
685
.of_match_table = of_match_ptr (cdce706_dt_match ),
686
686
},
687
- .probe_new = cdce706_probe ,
687
+ .probe = cdce706_probe ,
688
688
.id_table = cdce706_id ,
689
689
};
690
690
module_i2c_driver (cdce706_i2c_driver );
Original file line number Diff line number Diff line change @@ -824,7 +824,7 @@ static struct i2c_driver cdce925_driver = {
824
824
.name = "cdce925" ,
825
825
.of_match_table = of_match_ptr (clk_cdce925_of_match ),
826
826
},
827
- .probe_new = cdce925_probe ,
827
+ .probe = cdce925_probe ,
828
828
.id_table = cdce925_id ,
829
829
};
830
830
module_i2c_driver (cdce925_driver );
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ static struct i2c_driver cs2000_driver = {
622
622
.pm = & cs2000_pm_ops ,
623
623
.of_match_table = cs2000_of_match ,
624
624
},
625
- .probe_new = cs2000_probe ,
625
+ .probe = cs2000_probe ,
626
626
.remove = cs2000_remove ,
627
627
.id_table = cs2000_id ,
628
628
};
Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ static struct i2c_driver max9485_driver = {
376
376
.pm = & max9485_pm_ops ,
377
377
.of_match_table = max9485_dt_ids ,
378
378
},
379
- .probe_new = max9485_i2c_probe ,
379
+ .probe = max9485_i2c_probe ,
380
380
.id_table = max9485_i2c_ids ,
381
381
};
382
382
module_i2c_driver (max9485_driver );
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ static struct i2c_driver rs9_driver = {
413
413
.pm = & rs9_pm_ops ,
414
414
.of_match_table = clk_rs9_of_match ,
415
415
},
416
- .probe_new = rs9_probe ,
416
+ .probe = rs9_probe ,
417
417
.id_table = rs9_id ,
418
418
};
419
419
module_i2c_driver (rs9_driver );
Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ static struct i2c_driver si514_driver = {
387
387
.name = "si514" ,
388
388
.of_match_table = clk_si514_of_match ,
389
389
},
390
- .probe_new = si514_probe ,
390
+ .probe = si514_probe ,
391
391
.id_table = si514_id ,
392
392
};
393
393
module_i2c_driver (si514_driver );
Original file line number Diff line number Diff line change @@ -1834,7 +1834,7 @@ static struct i2c_driver si5341_driver = {
1834
1834
.name = "si5341" ,
1835
1835
.of_match_table = clk_si5341_of_match ,
1836
1836
},
1837
- .probe_new = si5341_probe ,
1837
+ .probe = si5341_probe ,
1838
1838
.remove = si5341_remove ,
1839
1839
.id_table = si5341_id ,
1840
1840
};
Original file line number Diff line number Diff line change @@ -1656,7 +1656,7 @@ static struct i2c_driver si5351_driver = {
1656
1656
.name = "si5351" ,
1657
1657
.of_match_table = of_match_ptr (si5351_dt_ids ),
1658
1658
},
1659
- .probe_new = si5351_i2c_probe ,
1659
+ .probe = si5351_i2c_probe ,
1660
1660
.id_table = si5351_i2c_ids ,
1661
1661
};
1662
1662
module_i2c_driver (si5351_driver );
Original file line number Diff line number Diff line change @@ -520,7 +520,7 @@ static struct i2c_driver si544_driver = {
520
520
.name = "si544" ,
521
521
.of_match_table = clk_si544_of_match ,
522
522
},
523
- .probe_new = si544_probe ,
523
+ .probe = si544_probe ,
524
524
.id_table = si544_id ,
525
525
};
526
526
module_i2c_driver (si544_driver );
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ static struct i2c_driver si570_driver = {
510
510
.name = "si570" ,
511
511
.of_match_table = clk_si570_of_match ,
512
512
},
513
- .probe_new = si570_probe ,
513
+ .probe = si570_probe ,
514
514
.id_table = si570_id ,
515
515
};
516
516
module_i2c_driver (si570_driver );
You can’t perform that action at this time.
0 commit comments