]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ext4: include missing blk.h
authorQuentin Schulz <quentin.schulz@cherry.de>
Tue, 28 Oct 2025 14:02:19 +0000 (15:02 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 7 Nov 2025 21:34:04 +0000 (15:34 -0600)
If missing, lbaint_t typedef will not be found in some cases.

[The proper fix for the commit above at the time would have been to
 include ide.h as only since commit 1a73661bc7a7 ("dm: Add a new header
 for block devices") is the typedef in blk.h]

Fixes: 04735e9c5578 ("Fix ext2/ext4 filesystem accesses beyond 2TiB")
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
include/ext_common.h

index 6e17fbd277135b11fbc0c7fc473b1518d1e923f1..09fb2aeb4d9567a0e62d256ea0ea6fbd3d4573cb 100644 (file)
@@ -20,6 +20,7 @@
 #ifndef __EXT_COMMON__
 #define __EXT_COMMON__
 
+#include <blk.h>
 #include <compiler.h>
 
 struct cmd_tbl;