aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Taedcke <christian.taedcke@weidmueller.com>2023-11-15 13:44:17 +0100
committerTom Rini <trini@konsulko.com>2023-11-28 20:10:24 -0500
commit601d33f31aebf5b76053c501a91a43e0840b1913 (patch)
treec55f7a22b20dc3f4020d9262fb3fcfc074065a40 /test
parent24caa6964a7c0364296a8654041ac875d4ef0ad8 (diff)
downloadu-boot-601d33f31aebf5b76053c501a91a43e0840b1913.zip
u-boot-601d33f31aebf5b76053c501a91a43e0840b1913.tar.gz
u-boot-601d33f31aebf5b76053c501a91a43e0840b1913.tar.bz2
test: spl: Remove usage of FAT32_SIGN
FAT32_SIGN is removed in the following commits. Signed-off-by: Christian Taedcke <christian.taedcke@weidmueller.com>
Diffstat (limited to 'test')
-rw-r--r--test/image/spl_load_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/image/spl_load_fs.c b/test/image/spl_load_fs.c
index 297ab08..90e640b 100644
--- a/test/image/spl_load_fs.c
+++ b/test/image/spl_load_fs.c
@@ -220,7 +220,7 @@ static size_t create_fat(void *dst, size_t size, const char *filename,
bs->root_cluster = cpu_to_le32(root_sector);
vi->ext_boot_sign = 0x29;
- memcpy(vi->fs_type, FAT32_SIGN, sizeof(vi->fs_type));
+ memcpy(vi->fs_type, "FAT32 ", sizeof(vi->fs_type));
memcpy(dst + 0x1fe, "\x55\xAA", 2);