aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/mm/c-r4k.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
index 4c32ede464b5..1d6fee48d0dd 100644
--- a/arch/mips/mm/c-r4k.c
+++ b/arch/mips/mm/c-r4k.c
@@ -1348,10 +1348,10 @@ static int __init cca_setup(char *str)
1348{ 1348{
1349 get_option(&str, &cca); 1349 get_option(&str, &cca);
1350 1350
1351 return 1; 1351 return 0;
1352} 1352}
1353 1353
1354__setup("cca=", cca_setup); 1354early_param("cca", cca_setup);
1355 1355
1356static void __cpuinit coherency_setup(void) 1356static void __cpuinit coherency_setup(void)
1357{ 1357{
@@ -1401,10 +1401,10 @@ static int __init setcoherentio(char *str)
1401{ 1401{
1402 coherentio = 1; 1402 coherentio = 1;
1403 1403
1404 return 1; 1404 return 0;
1405} 1405}
1406 1406
1407__setup("coherentio", setcoherentio); 1407early_param("coherentio", setcoherentio);
1408#endif 1408#endif
1409 1409
1410static void __cpuinit r4k_cache_error_setup(void) 1410static void __cpuinit r4k_cache_error_setup(void)