diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-15 08:33:16 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-15 08:33:16 -0400 |
commit | c9b2a789281c76d3710036455d0524a1ac997f66 (patch) | |
tree | c99f153110c95126ccd20871ea99e1b38ecb2e25 /include | |
parent | 17f6e6cc499e207908b269d04cb7581d8f8f6870 (diff) | |
parent | 43bacbe6ab85030a4dc424700f83108333e99536 (diff) |
Merge https://source.denx.de/u-boot/custodians/u-boot-cfi-flash
- cfi: respect reg address length (Nuno)
Diffstat (limited to 'include')
-rw-r--r-- | include/flash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/flash.h b/include/flash.h index 95992fa689b..3710a2731b7 100644 --- a/include/flash.h +++ b/include/flash.h @@ -46,6 +46,7 @@ typedef struct { #ifdef CONFIG_CFI_FLASH /* DM-specific parts */ struct udevice *dev; phys_addr_t base; + phys_size_t addr_size; #endif } flash_info_t; |