boards: arm: stm32h7b3i_dk: fix OSPI flash size
The OSPI flash driver expects size in bits. Use bits instead of bytes for the size. Signed-off-by: Francois Ramu <francois.ramu@st.com> Signed-off-by: Georgij Cernysiov <geo.cgv@gmail.com>
This commit is contained in:
parent
7d5c158b09
commit
a6425f11b2
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@
|
|||
compatible = "st,stm32-ospi-nor";
|
||||
reg = <0>;
|
||||
ospi-max-frequency = <DT_FREQ_M(50)>;
|
||||
size = <DT_SIZE_M(64)>;
|
||||
size = <DT_SIZE_M(512)>; /* 512 Megabits */
|
||||
spi-bus-width = <OSPI_OPI_MODE>;
|
||||
data-rate = <OSPI_DTR_TRANSFER>;
|
||||
status = "okay";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue