Skip to content

Commit 9cc7d59

Browse files
committed
Merge tag 'pinctrl-v6.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl
Pull pin control fixes from Linus Walleij: - Add some missing pins on the Qualcomm QCM2290, along with a managed resources patch that make it clean and nice - Drop an unused function in the ST Micro driver - Drop bouncing MAINTAINER entry - Drop of_match_ptr() macro to rid compile warnings in the TB10x driver - Fix up calculation of pin numbers from base in the Sunxi driver * tag 'pinctrl-v6.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl: pinctrl: sunxi: dt: Consider pin base when calculating bank number from pin pinctrl: tb10x: Drop of_match_ptr for ID table pinctrl: MAINTAINERS: Drop bouncing Jianlong Huang pinctrl: st: Drop unused st_gpio_bank() function pinctrl: qcom: pinctrl-qcm2290: Add missing pins pinctrl: qcom: switch to devm_gpiochip_add_data()
2 parents 3d85339 + 5558f27 commit 9cc7d59

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+17
-80
lines changed

Documentation/devicetree/bindings/pinctrl/starfive,jh7110-aon-pinctrl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description: |
1515
Some peripherals such as PWM have their I/O go through the 4 "GPIOs".
1616
1717
maintainers:
18-
- Jianlong Huang <jianlong.huang@starfivetech.com>
18+
- Hal Feng <hal.feng@starfivetech.com>
1919

2020
properties:
2121
compatible:

Documentation/devicetree/bindings/pinctrl/starfive,jh7110-sys-pinctrl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description: |
1818
any GPIO can be set up to be controlled by any of the peripherals.
1919
2020
maintainers:
21-
- Jianlong Huang <jianlong.huang@starfivetech.com>
21+
- Hal Feng <hal.feng@starfivetech.com>
2222

2323
properties:
2424
compatible:

MAINTAINERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23662,7 +23662,6 @@ F: include/dt-bindings/clock/starfive?jh71*.h
2366223662

2366323663
STARFIVE JH71X0 PINCTRL DRIVERS
2366423664
M: Emil Renner Berthing <[email protected]>
23665-
M: Jianlong Huang <[email protected]>
2366623665
M: Hal Feng <[email protected]>
2366723666
2366823667
S: Maintained

drivers/pinctrl/pinctrl-st.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -374,11 +374,6 @@ static struct st_pio_control *st_get_pio_control(
374374
}
375375

376376
/* Low level functions.. */
377-
static inline int st_gpio_bank(int gpio)
378-
{
379-
return gpio/ST_GPIO_PINS_PER_BANK;
380-
}
381-
382377
static inline int st_gpio_pin(int gpio)
383378
{
384379
return gpio%ST_GPIO_PINS_PER_BANK;

drivers/pinctrl/pinctrl-tb10x.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ static struct platform_driver tb10x_pinctrl_pdrv = {
823823
.remove = tb10x_pinctrl_remove,
824824
.driver = {
825825
.name = "tb10x_pinctrl",
826-
.of_match_table = of_match_ptr(tb10x_pinctrl_dt_ids),
826+
.of_match_table = tb10x_pinctrl_dt_ids,
827827
}
828828
};
829829

drivers/pinctrl/qcom/pinctrl-apq8064.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,6 @@ static struct platform_driver apq8064_pinctrl_driver = {
629629
.of_match_table = apq8064_pinctrl_of_match,
630630
},
631631
.probe = apq8064_pinctrl_probe,
632-
.remove = msm_pinctrl_remove,
633632
};
634633

635634
static int __init apq8064_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-apq8084.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,6 @@ static struct platform_driver apq8084_pinctrl_driver = {
12071207
.of_match_table = apq8084_pinctrl_of_match,
12081208
},
12091209
.probe = apq8084_pinctrl_probe,
1210-
.remove = msm_pinctrl_remove,
12111210
};
12121211

12131212
static int __init apq8084_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq4019.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,6 @@ static struct platform_driver ipq4019_pinctrl_driver = {
710710
.of_match_table = ipq4019_pinctrl_of_match,
711711
},
712712
.probe = ipq4019_pinctrl_probe,
713-
.remove = msm_pinctrl_remove,
714713
};
715714

716715
static int __init ipq4019_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq5018.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,6 @@ static struct platform_driver ipq5018_pinctrl_driver = {
754754
.of_match_table = ipq5018_pinctrl_of_match,
755755
},
756756
.probe = ipq5018_pinctrl_probe,
757-
.remove = msm_pinctrl_remove,
758757
};
759758

760759
static int __init ipq5018_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq5332.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,6 @@ static struct platform_driver ipq5332_pinctrl_driver = {
834834
.of_match_table = ipq5332_pinctrl_of_match,
835835
},
836836
.probe = ipq5332_pinctrl_probe,
837-
.remove = msm_pinctrl_remove,
838837
};
839838

840839
static int __init ipq5332_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq5424.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,6 @@ static struct platform_driver ipq5424_pinctrl_driver = {
791791
.of_match_table = ipq5424_pinctrl_of_match,
792792
},
793793
.probe = ipq5424_pinctrl_probe,
794-
.remove = msm_pinctrl_remove,
795794
};
796795

797796
static int __init ipq5424_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq6018.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,6 @@ static struct platform_driver ipq6018_pinctrl_driver = {
10801080
.of_match_table = ipq6018_pinctrl_of_match,
10811081
},
10821082
.probe = ipq6018_pinctrl_probe,
1083-
.remove = msm_pinctrl_remove,
10841083
};
10851084

10861085
static int __init ipq6018_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq8064.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,6 @@ static struct platform_driver ipq8064_pinctrl_driver = {
631631
.of_match_table = ipq8064_pinctrl_of_match,
632632
},
633633
.probe = ipq8064_pinctrl_probe,
634-
.remove = msm_pinctrl_remove,
635634
};
636635

637636
static int __init ipq8064_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq8074.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,6 @@ static struct platform_driver ipq8074_pinctrl_driver = {
10411041
.of_match_table = ipq8074_pinctrl_of_match,
10421042
},
10431043
.probe = ipq8074_pinctrl_probe,
1044-
.remove = msm_pinctrl_remove,
10451044
};
10461045

10471046
static int __init ipq8074_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-ipq9574.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,6 @@ static struct platform_driver ipq9574_pinctrl_driver = {
799799
.of_match_table = ipq9574_pinctrl_of_match,
800800
},
801801
.probe = ipq9574_pinctrl_probe,
802-
.remove = msm_pinctrl_remove,
803802
};
804803

805804
static int __init ipq9574_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-mdm9607.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,6 @@ static struct platform_driver mdm9607_pinctrl_driver = {
10591059
.of_match_table = mdm9607_pinctrl_of_match,
10601060
},
10611061
.probe = mdm9607_pinctrl_probe,
1062-
.remove = msm_pinctrl_remove,
10631062
};
10641063

10651064
static int __init mdm9607_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-mdm9615.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,6 @@ static struct platform_driver mdm9615_pinctrl_driver = {
446446
.of_match_table = mdm9615_pinctrl_of_match,
447447
},
448448
.probe = mdm9615_pinctrl_probe,
449-
.remove = msm_pinctrl_remove,
450449
};
451450

452451
static int __init mdm9615_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm.c

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,7 @@ static int msm_gpio_init(struct msm_pinctrl *pctrl)
14421442
girq->handler = handle_bad_irq;
14431443
girq->parents[0] = pctrl->irq;
14441444

1445-
ret = gpiochip_add_data(&pctrl->chip, pctrl);
1445+
ret = devm_gpiochip_add_data(pctrl->dev, &pctrl->chip, pctrl);
14461446
if (ret) {
14471447
dev_err(pctrl->dev, "Failed register gpiochip\n");
14481448
return ret;
@@ -1463,7 +1463,6 @@ static int msm_gpio_init(struct msm_pinctrl *pctrl)
14631463
dev_name(pctrl->dev), 0, 0, chip->ngpio);
14641464
if (ret) {
14651465
dev_err(pctrl->dev, "Failed to add pin range\n");
1466-
gpiochip_remove(&pctrl->chip);
14671466
return ret;
14681467
}
14691468
}
@@ -1599,13 +1598,5 @@ int msm_pinctrl_probe(struct platform_device *pdev,
15991598
}
16001599
EXPORT_SYMBOL(msm_pinctrl_probe);
16011600

1602-
void msm_pinctrl_remove(struct platform_device *pdev)
1603-
{
1604-
struct msm_pinctrl *pctrl = platform_get_drvdata(pdev);
1605-
1606-
gpiochip_remove(&pctrl->chip);
1607-
}
1608-
EXPORT_SYMBOL(msm_pinctrl_remove);
1609-
16101601
MODULE_DESCRIPTION("Qualcomm Technologies, Inc. TLMM driver");
16111602
MODULE_LICENSE("GPL v2");

drivers/pinctrl/qcom/pinctrl-msm.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,5 @@ extern const struct dev_pm_ops msm_pinctrl_dev_pm_ops;
171171

172172
int msm_pinctrl_probe(struct platform_device *pdev,
173173
const struct msm_pinctrl_soc_data *soc_data);
174-
void msm_pinctrl_remove(struct platform_device *pdev);
175174

176175
#endif

drivers/pinctrl/qcom/pinctrl-msm8226.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,6 @@ static struct platform_driver msm8226_pinctrl_driver = {
654654
.of_match_table = msm8226_pinctrl_of_match,
655655
},
656656
.probe = msm8226_pinctrl_probe,
657-
.remove = msm_pinctrl_remove,
658657
};
659658

660659
static int __init msm8226_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8660.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,6 @@ static struct platform_driver msm8660_pinctrl_driver = {
981981
.of_match_table = msm8660_pinctrl_of_match,
982982
},
983983
.probe = msm8660_pinctrl_probe,
984-
.remove = msm_pinctrl_remove,
985984
};
986985

987986
static int __init msm8660_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8909.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,6 @@ static struct platform_driver msm8909_pinctrl_driver = {
929929
.of_match_table = msm8909_pinctrl_of_match,
930930
},
931931
.probe = msm8909_pinctrl_probe,
932-
.remove = msm_pinctrl_remove,
933932
};
934933

935934
static int __init msm8909_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8916.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,6 @@ static struct platform_driver msm8916_pinctrl_driver = {
969969
.of_match_table = msm8916_pinctrl_of_match,
970970
},
971971
.probe = msm8916_pinctrl_probe,
972-
.remove = msm_pinctrl_remove,
973972
};
974973

975974
static int __init msm8916_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8917.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,6 @@ static struct platform_driver msm8917_pinctrl_driver = {
16071607
.of_match_table = msm8917_pinctrl_of_match,
16081608
},
16091609
.probe = msm8917_pinctrl_probe,
1610-
.remove = msm_pinctrl_remove,
16111610
};
16121611

16131612
static int __init msm8917_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8953.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1816,7 +1816,6 @@ static struct platform_driver msm8953_pinctrl_driver = {
18161816
.of_match_table = msm8953_pinctrl_of_match,
18171817
},
18181818
.probe = msm8953_pinctrl_probe,
1819-
.remove = msm_pinctrl_remove,
18201819
};
18211820

18221821
static int __init msm8953_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8960.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,6 @@ static struct platform_driver msm8960_pinctrl_driver = {
12461246
.of_match_table = msm8960_pinctrl_of_match,
12471247
},
12481248
.probe = msm8960_pinctrl_probe,
1249-
.remove = msm_pinctrl_remove,
12501249
};
12511250

12521251
static int __init msm8960_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8976.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,6 @@ static struct platform_driver msm8976_pinctrl_driver = {
10961096
.of_match_table = msm8976_pinctrl_of_match,
10971097
},
10981098
.probe = msm8976_pinctrl_probe,
1099-
.remove = msm_pinctrl_remove,
11001099
};
11011100

11021101
static int __init msm8976_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8994.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1343,7 +1343,6 @@ static struct platform_driver msm8994_pinctrl_driver = {
13431343
.of_match_table = msm8994_pinctrl_of_match,
13441344
},
13451345
.probe = msm8994_pinctrl_probe,
1346-
.remove = msm_pinctrl_remove,
13471346
};
13481347

13491348
static int __init msm8994_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8996.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1920,7 +1920,6 @@ static struct platform_driver msm8996_pinctrl_driver = {
19201920
.of_match_table = msm8996_pinctrl_of_match,
19211921
},
19221922
.probe = msm8996_pinctrl_probe,
1923-
.remove = msm_pinctrl_remove,
19241923
};
19251924

19261925
static int __init msm8996_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8998.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1535,7 +1535,6 @@ static struct platform_driver msm8998_pinctrl_driver = {
15351535
.of_match_table = msm8998_pinctrl_of_match,
15361536
},
15371537
.probe = msm8998_pinctrl_probe,
1538-
.remove = msm_pinctrl_remove,
15391538
};
15401539

15411540
static int __init msm8998_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-msm8x74.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,6 @@ static struct platform_driver msm8x74_pinctrl_driver = {
10831083
.of_match_table = msm8x74_pinctrl_of_match,
10841084
},
10851085
.probe = msm8x74_pinctrl_probe,
1086-
.remove = msm_pinctrl_remove,
10871086
};
10881087

10891088
static int __init msm8x74_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-qcm2290.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ static const struct pinctrl_pin_desc qcm2290_pins[] = {
167167
PINCTRL_PIN(62, "GPIO_62"),
168168
PINCTRL_PIN(63, "GPIO_63"),
169169
PINCTRL_PIN(64, "GPIO_64"),
170+
PINCTRL_PIN(65, "GPIO_65"),
171+
PINCTRL_PIN(66, "GPIO_66"),
172+
PINCTRL_PIN(67, "GPIO_67"),
173+
PINCTRL_PIN(68, "GPIO_68"),
170174
PINCTRL_PIN(69, "GPIO_69"),
171175
PINCTRL_PIN(70, "GPIO_70"),
172176
PINCTRL_PIN(71, "GPIO_71"),
@@ -181,12 +185,17 @@ static const struct pinctrl_pin_desc qcm2290_pins[] = {
181185
PINCTRL_PIN(80, "GPIO_80"),
182186
PINCTRL_PIN(81, "GPIO_81"),
183187
PINCTRL_PIN(82, "GPIO_82"),
188+
PINCTRL_PIN(83, "GPIO_83"),
189+
PINCTRL_PIN(84, "GPIO_84"),
190+
PINCTRL_PIN(85, "GPIO_85"),
184191
PINCTRL_PIN(86, "GPIO_86"),
185192
PINCTRL_PIN(87, "GPIO_87"),
186193
PINCTRL_PIN(88, "GPIO_88"),
187194
PINCTRL_PIN(89, "GPIO_89"),
188195
PINCTRL_PIN(90, "GPIO_90"),
189196
PINCTRL_PIN(91, "GPIO_91"),
197+
PINCTRL_PIN(92, "GPIO_92"),
198+
PINCTRL_PIN(93, "GPIO_93"),
190199
PINCTRL_PIN(94, "GPIO_94"),
191200
PINCTRL_PIN(95, "GPIO_95"),
192201
PINCTRL_PIN(96, "GPIO_96"),
@@ -1125,7 +1134,6 @@ static struct platform_driver qcm2290_pinctrl_driver = {
11251134
.of_match_table = qcm2290_pinctrl_of_match,
11261135
},
11271136
.probe = qcm2290_pinctrl_probe,
1128-
.remove = msm_pinctrl_remove,
11291137
};
11301138

11311139
static int __init qcm2290_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-qcs404.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1644,7 +1644,6 @@ static struct platform_driver qcs404_pinctrl_driver = {
16441644
.of_match_table = qcs404_pinctrl_of_match,
16451645
},
16461646
.probe = qcs404_pinctrl_probe,
1647-
.remove = msm_pinctrl_remove,
16481647
};
16491648

16501649
static int __init qcs404_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-qcs615.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,6 @@ static struct platform_driver qcs615_tlmm_driver = {
10871087
.of_match_table = qcs615_tlmm_of_match,
10881088
},
10891089
.probe = qcs615_tlmm_probe,
1090-
.remove = msm_pinctrl_remove,
10911090
};
10921091

10931092
static int __init qcs615_tlmm_init(void)

drivers/pinctrl/qcom/pinctrl-qcs8300.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,6 @@ static struct platform_driver qcs8300_pinctrl_driver = {
12271227
.of_match_table = qcs8300_pinctrl_of_match,
12281228
},
12291229
.probe = qcs8300_pinctrl_probe,
1230-
.remove = msm_pinctrl_remove,
12311230
};
12321231

12331232
static int __init qcs8300_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-qdf2xxx.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ static struct platform_driver qdf2xxx_pinctrl_driver = {
145145
.acpi_match_table = qdf2xxx_acpi_ids,
146146
},
147147
.probe = qdf2xxx_pinctrl_probe,
148-
.remove = msm_pinctrl_remove,
149148
};
150149

151150
static int __init qdf2xxx_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-qdu1000.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1248,7 +1248,6 @@ static struct platform_driver qdu1000_tlmm_driver = {
12481248
.of_match_table = qdu1000_tlmm_of_match,
12491249
},
12501250
.probe = qdu1000_tlmm_probe,
1251-
.remove = msm_pinctrl_remove,
12521251
};
12531252

12541253
static int __init qdu1000_tlmm_init(void)

drivers/pinctrl/qcom/pinctrl-sa8775p.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,6 @@ static struct platform_driver sa8775p_pinctrl_driver = {
15401540
.of_match_table = sa8775p_pinctrl_of_match,
15411541
},
15421542
.probe = sa8775p_pinctrl_probe,
1543-
.remove = msm_pinctrl_remove,
15441543
};
15451544

15461545
static int __init sa8775p_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-sar2130p.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,6 @@ static struct platform_driver sar2130p_tlmm_driver = {
14861486
.of_match_table = sar2130p_tlmm_of_match,
14871487
},
14881488
.probe = sar2130p_tlmm_probe,
1489-
.remove = msm_pinctrl_remove,
14901489
};
14911490

14921491
static int __init sar2130p_tlmm_init(void)

drivers/pinctrl/qcom/pinctrl-sc7180.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,6 @@ static struct platform_driver sc7180_pinctrl_driver = {
11591159
.of_match_table = sc7180_pinctrl_of_match,
11601160
},
11611161
.probe = sc7180_pinctrl_probe,
1162-
.remove = msm_pinctrl_remove,
11631162
};
11641163

11651164
static int __init sc7180_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-sc7280.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,6 @@ static struct platform_driver sc7280_pinctrl_driver = {
15051505
.of_match_table = sc7280_pinctrl_of_match,
15061506
},
15071507
.probe = sc7280_pinctrl_probe,
1508-
.remove = msm_pinctrl_remove,
15091508
};
15101509

15111510
static int __init sc7280_pinctrl_init(void)

drivers/pinctrl/qcom/pinctrl-sc8180x.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1720,7 +1720,6 @@ static struct platform_driver sc8180x_pinctrl_driver = {
17201720
.acpi_match_table = sc8180x_pinctrl_acpi_match,
17211721
},
17221722
.probe = sc8180x_pinctrl_probe,
1723-
.remove = msm_pinctrl_remove,
17241723
};
17251724

17261725
static int __init sc8180x_pinctrl_init(void)

0 commit comments

Comments
 (0)