From: "Paul E. McKenney" <[email protected]> Because rcutorture.c has its old name back, there is no longer any need for the MODULE_ALIAS() and MODULE_PARAM_PREFIX definitions. This commit therefore removes them.
Signed-off-by: Paul E. McKenney <[email protected]> --- kernel/rcu/rcutorture.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c index 390189ecda05..81b8cc795a07 100644 --- a/kernel/rcu/rcutorture.c +++ b/kernel/rcu/rcutorture.c @@ -53,12 +53,6 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("Paul E. McKenney <[email protected]> and Josh Triplett <[email protected]>"); -MODULE_ALIAS("rcutorture"); -#ifdef MODULE_PARAM_PREFIX -#undef MODULE_PARAM_PREFIX -#endif -#define MODULE_PARAM_PREFIX "rcutorture." - torture_parm(int, fqs_duration, 0, "Duration of fqs bursts (us), 0 to disable"); torture_parm(int, fqs_holdoff, 0, "Holdoff time within fqs bursts (us)"); torture_parm(int, fqs_stutter, 3, "Wait time between fqs bursts (s)"); -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

