diff options
-rw-r--r-- | arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/powerpc/sysdev/fsl_85xx_l2ctlr.c b/arch/powerpc/sysdev/fsl_85xx_l2ctlr.c index 861cebf9c292..c27058e5df26 100644 --- a/arch/powerpc/sysdev/fsl_85xx_l2ctlr.c +++ b/arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | |||
@@ -90,12 +90,8 @@ static int mpc85xx_l2ctlr_of_probe(struct platform_device *dev) | |||
90 | } | 90 | } |
91 | l2cache_size = *prop; | 91 | l2cache_size = *prop; |
92 | 92 | ||
93 | if (get_cache_sram_params(&sram_params)) { | 93 | if (get_cache_sram_params(&sram_params)) |
94 | dev_err(&dev->dev, | 94 | return 0; /* fall back to L2 cache only */ |
95 | "Entire L2 as cache, provide valid sram offset and size\n"); | ||
96 | return -EINVAL; | ||
97 | } | ||
98 | |||
99 | 95 | ||
100 | rem = l2cache_size % sram_params.sram_size; | 96 | rem = l2cache_size % sram_params.sram_size; |
101 | ways = LOCK_WAYS_FULL * sram_params.sram_size / l2cache_size; | 97 | ways = LOCK_WAYS_FULL * sram_params.sram_size / l2cache_size; |