diff options
author | Simon Glass <sjg@chromium.org> | 2024-11-02 13:36:47 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-13 11:56:01 -0600 |
commit | 692ed744ba0cd85b6f186a902d4a8b2017880dd9 (patch) | |
tree | b4f55944af7efd91debba5b4b4152d62fc0a3028 /test/common/bloblist.c | |
parent | 82e6d79d9e044660b2a1310527292d48171c2463 (diff) |
bloblist: test: Drop global_data declarations
This pointer is not used any more, so drop the declarations.
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
Diffstat (limited to 'test/common/bloblist.c')
-rw-r--r-- | test/common/bloblist.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/common/bloblist.c b/test/common/bloblist.c index fd85c7ab79e..7b90fa7f352 100644 --- a/test/common/bloblist.c +++ b/test/common/bloblist.c @@ -6,13 +6,10 @@ #include <bloblist.h> #include <log.h> #include <mapmem.h> -#include <asm/global_data.h> #include <test/suites.h> #include <test/test.h> #include <test/ut.h> -DECLARE_GLOBAL_DATA_PTR; - /* Declare a new bloblist test */ #define BLOBLIST_TEST(_name, _flags) \ UNIT_TEST(_name, _flags, bloblist_test) |