From: Masahiro Yamada Date: Tue, 16 Jan 2018 14:15:38 +0000 (+0900) Subject: utils: rename struct mem_region_t to struct mem_region X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=109ae263842be5fe1124d4fba1280a0db81895db;p=project%2Fbcm63xx%2Fatf.git 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 --- 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;