Skip to content

Commit 29cc07e

Browse files
fabiobaltiericarlescufi
authored andcommitted
board: teensy: drop spi-nor from the flash nodes
These are RT1060 based boards that use the flash for XIP, the bus (nxp,imx-flexspi) lives under memc or flash. Declaring the flash as "jedec,spi-nor" causes the SPI NOR driver to create an instance for it, but then there's no bus and the build fails. Dropping the spi-nor compatible seems to fix the problem. Signed-off-by: Fabio Baltieri <[email protected]>
1 parent 6dbc446 commit 29cc07e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

boards/arm/teensy4/teensy40.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
reg = <0x402a8000 0x4000>, <0x60000000 0x200000>;
3939
/* WINBOND flash memory*/
4040
w25q16jvuxim: w25q16jvuxim@0 {
41-
compatible = "winbond,w25q16jvuxim", "jedec,spi-nor";
41+
compatible = "winbond,w25q16jvuxim";
4242
size = <16777208>;
4343
reg = <0>;
4444
spi-max-frequency = <133000000>;

boards/arm/teensy4/teensy41.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
reg = < 0x402a8000 0x4000 >, < 0x60000000 0x800000 >;
1212
/* WINBOND flash memory*/
1313
w25q64jvxgim: w25q64jvxgim@0 {
14-
compatible = "winbond,w25q64jvxgim", "jedec,spi-nor";
14+
compatible = "winbond,w25q64jvxgim";
1515
size = < 8388607 >;
1616
reg = < 0 >;
1717
spi-max-frequency = < 133000000 >;

0 commit comments

Comments
 (0)