mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
8299d1f057
Rebased RPi foundation patches on linux 5.10.59, removed applied and reverted patches, wireless patches and defconfig patches. bcm2708: boot tested on RPi B+ v1.2 bcm2709: boot tested on RPi 4B v1.1 4G bcm2711: boot tested on RPi 4B v1.1 4G Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
823 B
Diff
26 lines
823 B
Diff
From 26715b72c201ab22e44698505969078520bddce0 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Wed, 12 May 2021 16:44:11 +0100
|
|
Subject: [PATCH] dtoverlays: Add pinctrl-names to i2c0 overlay.
|
|
|
|
Using dtoverlay=i2c0 failed to set up the pinctrl nodes as
|
|
pinctrl-name = "default"; was missing from the i2c0if node.
|
|
|
|
https://www.raspberrypi.org/forums/viewtopic.php?f=107&t=311686&p=1864112
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
arch/arm/boot/dts/overlays/i2c0-overlay.dts | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/i2c0-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/i2c0-overlay.dts
|
|
@@ -8,6 +8,7 @@
|
|
target = <&i2c0if>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
+ pinctrl-names = "default";
|
|
pinctrl-0 = <&i2c0_pins>;
|
|
};
|
|
};
|