binman: Use unsigned long over typedef ulong
authorAndrew Davis <afd@ti.com>
Tue, 4 Apr 2023 18:45:41 +0000 (13:45 -0500)
committerSimon Glass <sjg@chromium.org>
Fri, 28 Apr 2023 17:30:17 +0000 (11:30 -0600)
commitc71ee7e163550069828b89247dd7228d35cf10c7
tree1d8c7273708892ada4f1bab5d5d49d9394383996
parentb52d6de20768ddba6b9e75d198179eca6ec66300
binman: Use unsigned long over typedef ulong

The header binman_sym.h depends on ulong typedef but does not include
types.h. This means the header must be included after including types.h
or a header that includes it.

We could include types.h but instead let's just switch from ulong
to directly using unsigned long. This removes the need for typedef'ing
it in some of the tests, so also remove those.

Signed-off-by: Andrew Davis <afd@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
include/binman_sym.h
tools/binman/test/blob_syms.c
tools/binman/test/u_boot_binman_syms.c
tools/binman/test/u_boot_binman_syms_size.c