diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c index 8dd6fc91a..90d3d56f1 100644 --- a/init/main.c +++ b/init/main.c @@ -340,6 +340,9 @@ extern void mdacon_setup(char *str, int *ints); #ifdef CONFIG_LTPC extern void ltpc_setup(char *str, int *ints); #endif +#ifdef CONFIG_BLK_CPQ_DA +extern void cpqarray_setup(char *str, int *ints); +#endif #if defined(CONFIG_SYSVIPC) extern void ipc_init(void); @@ -878,6 +881,9 @@ static struct kernel_param cooked_params[] __initdata = { #ifdef CONFIG_LTPC { "ltpc=", ltpc_setup }, #endif +#ifdef CONFIG_BLK_CPQ_DA + { "smart2=", cpqarray_setup }, +#endif { 0, 0 } }; |