aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2014-03-18 09:25:14 +0530
committerAndrey Konovalov <andrey.konovalov@linaro.org>2014-04-16 23:51:28 +0400
commit249f01e1a8272cafc35be3c02c1bbcdf3a9c1486 (patch)
treef4ff234242445809c27bb09d507e2d047c4f6049 /arch
parentc01c363e7c5e6ae143459a21380a2fd88bb44574 (diff)
Revert "ARM: mm: Ignore data abort fault for Arndale-Octa board"
This reverts commit cc4f43903061eaa81844cbaab47aacbab2dd2d4a. Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mm/fault.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c
index 24e9492c3ca..3bbfd5dbe74 100644
--- a/arch/arm/mm/fault.c
+++ b/arch/arm/mm/fault.c
@@ -563,21 +563,6 @@ do_DataAbort(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
printk(KERN_ALERT "Unhandled fault: %s (0x%03x) at 0x%08lx\n",
inf->name, fsr, addr);
- /*
- * While booting Exynos5420 based Arndale-Octa board, we are getting
- * a data abort as soon as we get the command prompt. This behaviour
- * has become extremely reproducible (avg. 9 out of 10 iterations)
- * since v3.14-rc1. Currently ignoring this fault so that the board
- * becomes usable again.
- *
- * This is a work-around till the actual issue has been fixed.
- */
- if (config_enabled(CONFIG_ARCH_EXYNOS5)) {
- printk(KERN_ALERT "%s()-%d: Ignoring unhandled fault\n",
- __func__, __LINE__);
- return;
- }
-
info.si_signo = inf->sig;
info.si_errno = 0;
info.si_code = inf->code;