boards: fixed SPI DTS bug for nrf5340_audio_dk board
This fixes the SPI DTS bug on the nrf5340_audio_dk board
which was introduced by b8978e9
:
unit address and first address in 'reg' (0x0) don't match
for /soc/peripheral@50000000/spi@a000/sdhc@1
unit address and first address in 'reg' (0x1) don't match
for /soc/peripheral@50000000/spi@a000/cs47l63@2
Signed-off-by: Tim Sørensen <tims@demant.com>
This commit is contained in:
parent
62a55d03af
commit
68dfaee894
1 changed files with 2 additions and 2 deletions
|
@ -193,7 +193,7 @@ arduino_spi: &spi4 {
|
||||||
pinctrl-names = "default", "sleep";
|
pinctrl-names = "default", "sleep";
|
||||||
sdhc0: sdhc@1 {
|
sdhc0: sdhc@1 {
|
||||||
compatible = "zephyr,sdhc-spi-slot";
|
compatible = "zephyr,sdhc-spi-slot";
|
||||||
reg = <0>;
|
reg = <1>;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
sdmmc {
|
sdmmc {
|
||||||
compatible = "zephyr,sdmmc-disk";
|
compatible = "zephyr,sdmmc-disk";
|
||||||
|
@ -205,7 +205,7 @@ arduino_spi: &spi4 {
|
||||||
|
|
||||||
cs47l63: cs47l63@2 {
|
cs47l63: cs47l63@2 {
|
||||||
compatible = "cirrus,cs47l63";
|
compatible = "cirrus,cs47l63";
|
||||||
reg = <1>;
|
reg = <2>;
|
||||||
spi-max-frequency = <8000000>;
|
spi-max-frequency = <8000000>;
|
||||||
irq-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
|
irq-gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
|
||||||
reset-gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
|
reset-gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue