diff mbox series

[v2,02/20] bloblist: test: Drop global_data declarations

Message ID 20241102193715.432529-3-sjg@chromium.org
State New
Delegated to: Tom Rini
Headers show
Series test: Tidy up the test/ directory | expand

Commit Message

Simon Glass Nov. 2, 2024, 7:36 p.m. UTC
This pointer is not used any more, so drop the declarations.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 test/common/bloblist.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

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)