diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-25 10:55:35 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-25 10:55:35 +0000 |
commit | 80b8b39899a09c7516920cda5fd343b3086d4824 (patch) | |
tree | aa9903fd6b64d19c5f640fa302272d85c92b204e /modutils | |
parent | 1399282b47bb218132a554cbe5b2b0ce4dcc055f (diff) |
Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <wharms@bfs.de>)
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/insmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index cba8dc4a0..8a6cc05dd 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -3632,7 +3632,7 @@ static int obj_gpl_license(struct obj_file *f, const char **license) int i; if (license) *license = value+1; - for (i = 0; i < sizeof(gpl_licenses)/sizeof(gpl_licenses[0]); ++i) { + for (i = 0; i < ARRAY_SIZE(gpl_licenses); ++i) { if (strcmp(value+1, gpl_licenses[i]) == 0) return 0; } @@ -3833,7 +3833,7 @@ add_ksymoops_symbols(struct obj_file *f, const char *filename, #endif /* _NOT_SUPPORTED_ */ /* tag the desired sections if size is non-zero */ - for (i = 0; i < sizeof(section_names)/sizeof(section_names[0]); ++i) { + for (i = 0; i < ARRAY_SIZE(section_names); ++i) { sec = obj_find_section(f, section_names[i]); if (sec && sec->header.sh_size) { l = sizeof(symprefix)+ /* "__insmod_" */ |