From 109ae263842be5fe1124d4fba1280a0db81895db Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Tue, 16 Jan 2018 23:15:38 +0900 Subject: utils: rename struct mem_region_t to struct mem_region typedef mem_region_t mem_region_t; ... seems to work because they belong to different name-spaces, but humans are confused even if compilers are not. Signed-off-by: Masahiro Yamada --- include/lib/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/lib') diff --git a/include/lib/utils.h b/include/lib/utils.h index cfc83022..3d215c32 100644 --- a/include/lib/utils.h +++ b/include/lib/utils.h @@ -19,7 +19,7 @@ #include -typedef struct mem_region_t { +typedef struct mem_region { uintptr_t base; size_t nbytes; } mem_region_t; -- cgit v1.2.3