Skip to content

Commit

Permalink
params: drop redundant "unused" attributes
Browse files Browse the repository at this point in the history
Drop the redundant "unused" attributes from module-parameter structures
already marked "used".

Link: https://lore.kernel.org/lkml/20201103175711.10731-1-johan@kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
  • Loading branch information
Johan Hovold authored and Jessica Yu committed Nov 25, 2020
1 parent b112082 commit 8d6615f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/moduleparam.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#define __MODULE_INFO(tag, name, info) \
static const char __UNIQUE_ID(name)[] \
__used __section(".modinfo") __attribute__((unused, aligned(1))) \
__used __section(".modinfo") __attribute__((aligned(1))) \
= __MODULE_INFO_PREFIX __stringify(tag) "=" info

#define __MODULE_PARM_TYPE(name, _type) \
Expand Down Expand Up @@ -289,7 +289,7 @@ struct kparam_array
static const char __param_str_##name[] = prefix #name; \
static struct kernel_param __moduleparam_const __param_##name \
__used \
__section("__param") __attribute__ ((unused, aligned(sizeof(void *)))) \
__section("__param") __attribute__ ((aligned(sizeof(void *)))) \
= { __param_str_##name, THIS_MODULE, ops, \
VERIFY_OCTAL_PERMISSIONS(perm), level, flags, { arg } }

Expand Down

0 comments on commit 8d6615f

Please sign in to comment.