diff options
author | Pranith Kumar <pranith@gatech.edu> | 2014-04-16 16:46:01 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2014-05-14 12:46:32 -0400 |
commit | 6348675c4e3612e001860354fea78258e041d9a1 (patch) | |
tree | 7aebef3b22e1090983b256bcd7b571b4d139a257 | |
parent | 2b3f8ffe46f843ac3ae589c25603d66da4a99620 (diff) |
torture: Remove unused definition
The torture_parm() macro is the same as torture_param(), and torture_parm()
is not used. This commit therefore removes torture_parm().
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
-rw-r--r-- | include/linux/torture.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/torture.h b/include/linux/torture.h index f998574247fd..5ca58fcbaf1b 100644 --- a/include/linux/torture.h +++ b/include/linux/torture.h | |||
@@ -49,12 +49,6 @@ | |||
49 | #define VERBOSE_TOROUT_ERRSTRING(s) \ | 49 | #define VERBOSE_TOROUT_ERRSTRING(s) \ |
50 | do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! %s\n", torture_type, s); } while (0) | 50 | do { if (verbose) pr_alert("%s" TORTURE_FLAG "!!! %s\n", torture_type, s); } while (0) |
51 | 51 | ||
52 | /* Definitions for a non-string torture-test module parameter. */ | ||
53 | #define torture_parm(type, name, init, msg) \ | ||
54 | static type name = init; \ | ||
55 | module_param(name, type, 0444); \ | ||
56 | MODULE_PARM_DESC(name, msg); | ||
57 | |||
58 | /* Definitions for online/offline exerciser. */ | 52 | /* Definitions for online/offline exerciser. */ |
59 | int torture_onoff_init(long ooholdoff, long oointerval); | 53 | int torture_onoff_init(long ooholdoff, long oointerval); |
60 | char *torture_onoff_stats(char *page); | 54 | char *torture_onoff_stats(char *page); |