ranges.h: use tbl for tables and rng for ranges This simplifes the section names. Requested by hpa. Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
diff --git a/include/linux/ranges.h b/include/linux/ranges.h index 1a6bae2..418b50e 100644 --- a/include/linux/ranges.h +++ b/include/linux/ranges.h
@@ -3,7 +3,7 @@ #include <linux/sections.h> -#define SECTION_TYPE_RANGES ranges +#define SECTION_TYPE_RANGES rng #define SECTION_RANGE(section, name, level) \ SECTION_TYPE(section, SECTION_TYPE_RANGES, name, level)
diff --git a/include/linux/tables.h b/include/linux/tables.h index e3e07dc..27a2457 100644 --- a/include/linux/tables.h +++ b/include/linux/tables.h
@@ -3,7 +3,7 @@ #include <linux/sections.h> -#define SECTION_TYPE_TABLES tables +#define SECTION_TYPE_TABLES tbl #ifndef __ASSEMBLY__