summaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-16 23:15:38 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-01-16 23:27:00 +0900
commit109ae263842be5fe1124d4fba1280a0db81895db (patch)
tree75be7902ebe7ebe35af99bd4f2026811bed81d89 /include/lib
parent759a7be93721ef1ca117867255c69a99039afaa3 (diff)
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 <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/utils.h2
1 files changed, 1 insertions, 1 deletions
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 <types.h>
-typedef struct mem_region_t {
+typedef struct mem_region {
uintptr_t base;
size_t nbytes;
} mem_region_t;