]> git.ipfire.org Git - thirdparty/u-boot.git/commit
README: drop mention of MEM_SUPPORT_64BIT_DATA
authorRasmus Villemoes <rasmus.villemoes@prevas.dk>
Wed, 3 Jan 2024 10:47:09 +0000 (11:47 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 17 Jan 2024 13:00:07 +0000 (08:00 -0500)
commitd060c49afe21578460b55173597885c16754fdae
tree1065c913567acfa4c8010c5017b6fd4542468065
parent4762c51562fb7ff42d502b3ee88d0c9da6aade49
README: drop mention of MEM_SUPPORT_64BIT_DATA

The first sentence is half-way true; the macro is always defined, but
has the value 0 or 1.

The second is outright false. A lot of code guarded by
MEM_SUPPORT_64BIT_DATA uses a "ulong" to store values, so if
sizeof(long) is not 8, that code would probably compile, but not work
at all as expected.

It would probably be possible to make all such code explicitly use u64
and thus make it work on 32 bit targets, but until that is done, do
not pretend that it's ok to override the automatic value of
MEM_SUPPORT_64BIT_DATA.

Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
README