diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-04 15:23:10 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-04 15:23:10 +0000 |
commit | b97aee1ee851c6ce0f48e9c231a8152c1151dbe4 (patch) | |
tree | 3f5f5e1f2c6c8577ee1388dcec0bf4ba7d7565bd /target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch | |
parent | c41002971aeecd78e93ce553028f7cc01c4de777 (diff) | |
download | mtk-20170518-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.zip mtk-20170518-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.tar.gz mtk-20170518-b97aee1ee851c6ce0f48e9c231a8152c1151dbe4.tar.bz2 |
coldfire: R.I.P.
The target still uses 2.6.38. The support of that
kernel version has been removed ~9 months ago.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35489
Diffstat (limited to 'target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch')
-rw-r--r-- | target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch b/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch deleted file mode 100644 index 42c6f1b..0000000 --- a/target/linux/coldfire/patches/019-Fix-the-format-field-for-the-Coldfire-exception-fram.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 53cfdf92d9b68f5dac006853dd6727d7bf666b17 Mon Sep 17 00:00:00 2001 -From: Alison Wang <b18965@freescale.com> -Date: Thu, 4 Aug 2011 09:59:44 +0800 -Subject: [PATCH 19/52] Fix the format field for the Coldfire exception frame - -Different with M68K, the correct format field encoding -for ColdFire should be 4, 5, 6 or 7. - -Signed-off-by: Alison Wang <b18965@freescale.com> ---- - arch/m68k/mm/fault.c | 4 ++++ - 1 files changed, 4 insertions(+), 0 deletions(-) - ---- a/arch/m68k/mm/fault.c -+++ b/arch/m68k/mm/fault.c -@@ -45,7 +45,11 @@ int send_fault_sig(struct pt_regs *regs) - regs->stkadj = frame_extra_sizes[regs->format]; - tregs = (struct pt_regs *)((ulong)regs + regs->stkadj); - tregs->vector = regs->vector; -+#ifdef CONFIG_COLDFIRE -+ tregs->format = regs->stkadj + 4; -+#else - tregs->format = 0; -+#endif - tregs->pc = fixup->fixup; - tregs->sr = regs->sr; - return -1; |