mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
pinctrl/lantiq: only probe available pad controllers
The template falcon.dtsi lists all 6 pad controllers that can be loaded. Only probe those that have status = "okay"; inside the dts file. Signed-off-by: John Crispin <blogic@openwrt.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
9338628737
commit
a8ae367f40
@ -398,6 +398,9 @@ static int pinctrl_falcon_probe(struct platform_device *pdev)
|
||||
u32 avail;
|
||||
int pins;
|
||||
|
||||
if (!of_device_is_available(np))
|
||||
continue;
|
||||
|
||||
if (!ppdev) {
|
||||
dev_err(&pdev->dev, "failed to find pad pdev\n");
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user