diff options
author | Edward Z. Yang <ezyang@ksplice.com> | 2010-02-01 18:26:59 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-02-05 12:22:43 +0100 |
commit | 350f82586b7554240bee18c41cc5c842f63265ae (patch) | |
tree | de737c5b2c1b7f5c71bf3ab1797a6cb0027d59dc /kernel/params.c | |
parent | 7d9b48ea81ee49779b95ecd0df5a8c2789e4f836 (diff) | |
download | linux-350f82586b7554240bee18c41cc5c842f63265ae.tar.gz linux-350f82586b7554240bee18c41cc5c842f63265ae.tar.bz2 linux-350f82586b7554240bee18c41cc5c842f63265ae.zip |
Remove redundant trailing semicolons from macros
Signed-off-by: Edward Z. Yang <ezyang@ksplice.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel/params.c')
-rw-r--r-- | kernel/params.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/params.c b/kernel/params.c index cf1b69183127..2278ce244cf8 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -402,8 +402,8 @@ int param_get_string(char *buffer, struct kernel_param *kp) } /* sysfs output in /sys/modules/XYZ/parameters/ */ -#define to_module_attr(n) container_of(n, struct module_attribute, attr); -#define to_module_kobject(n) container_of(n, struct module_kobject, kobj); +#define to_module_attr(n) container_of(n, struct module_attribute, attr) +#define to_module_kobject(n) container_of(n, struct module_kobject, kobj) extern struct kernel_param __start___param[], __stop___param[]; @@ -421,7 +421,7 @@ struct module_param_attrs }; #ifdef CONFIG_SYSFS -#define to_param_attr(n) container_of(n, struct param_attribute, mattr); +#define to_param_attr(n) container_of(n, struct param_attribute, mattr) static ssize_t param_attr_show(struct module_attribute *mattr, struct module *mod, char *buf) |