diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-10-15 22:01:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:30 -0700 |
commit | 1ecfea06386c6b1344e83c8f909c87c88262ba1d (patch) | |
tree | 427fb3e63126df2eba4863dd862c1af3e641a581 /include | |
parent | d9f3216b474be170d0c093d70125b541ace58704 (diff) | |
download | linux-3.10-1ecfea06386c6b1344e83c8f909c87c88262ba1d.tar.gz linux-3.10-1ecfea06386c6b1344e83c8f909c87c88262ba1d.tar.bz2 linux-3.10-1ecfea06386c6b1344e83c8f909c87c88262ba1d.zip |
init.h: remove long-dead __setup_null_param() macro
This macro appears to have been unused for ages, and there are no
invocations of it anywhere in the source tree.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/init.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/init.h b/include/linux/init.h index 93538b696e3..ad63824460e 100644 --- a/include/linux/init.h +++ b/include/linux/init.h @@ -233,9 +233,6 @@ struct obs_kernel_param { __attribute__((aligned((sizeof(long))))) \ = { __setup_str_##unique_id, fn, early } -#define __setup_null_param(str, unique_id) \ - __setup_param(str, unique_id, NULL, 0) - #define __setup(str, fn) \ __setup_param(str, fn, fn, 0) @@ -296,7 +293,6 @@ void __init parse_early_param(void); void cleanup_module(void) __attribute__((alias(#exitfn))); #define __setup_param(str, unique_id, fn) /* nothing */ -#define __setup_null_param(str, unique_id) /* nothing */ #define __setup(str, func) /* nothing */ #endif |