From a57cf041761b7a644fecc1777c724cc5506a2d0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Tue, 20 Jun 2023 11:33:31 -0300 Subject: [PATCH] install: boards: bcm_27xx: Fix overlay for i2c1 baudrate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- install/boards/bcm_27xx.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/boards/bcm_27xx.sh b/install/boards/bcm_27xx.sh index 4b0e9bae4f..107c5eeeff 100755 --- a/install/boards/bcm_27xx.sh +++ b/install/boards/bcm_27xx.sh @@ -38,7 +38,8 @@ for STRING in \ "dtoverlay=uart4" \ "dtoverlay=uart5" \ "dtparam=i2c_vc=on" \ - "dtoverlay=i2c1,baudrate=1000000" \ + "dtoverlay=i2c1" \ + "dtparam=i2c_arm_baudrate=1000000" \ "dtoverlay=i2c4,pins_6_7,baudrate=1000000" \ "dtoverlay=i2c6,pins_22_23,baudrate=400000" \ "dtparam=spi=on" \