diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-06-23 21:04:37 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2009-06-23 21:04:37 +0000 |
commit | c49f135f72f98633653300bab5b0ac993b03c6be (patch) | |
tree | 50929b27bcea9ab4dc74b041d6e90967473301fa /target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch | |
parent | 50f2abfa16a2b509955312d1776beeece662c61b (diff) | |
download | mtk-20170518-c49f135f72f98633653300bab5b0ac993b03c6be.zip mtk-20170518-c49f135f72f98633653300bab5b0ac993b03c6be.tar.gz mtk-20170518-c49f135f72f98633653300bab5b0ac993b03c6be.tar.bz2 |
use broken-out patches for the coldfire to make it easier to follow differences against the bsp
SVN-Revision: 16547
Diffstat (limited to 'target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch')
-rw-r--r-- | target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch b/target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch new file mode 100644 index 0000000..c93c6f7 --- /dev/null +++ b/target/linux/coldfire/patches/072-mcfv4e_disable_irq_nosync.patch @@ -0,0 +1,24 @@ +From 69446dbc7af1fddf00f3ad0629008dd6875704a7 Mon Sep 17 00:00:00 2001 +From: Kurt Mahan <kmahan@freescale.com> +Date: Wed, 2 Jul 2008 16:03:56 -0600 +Subject: [PATCH] Add disable_irq_nosync alias to disable_irq. + +LTIBName: mcfv4e-disable-irq-nosync +Signed-off-by: Kurt Mahan <kmahan@freescale.com> +--- + arch/m68k/coldfire/ints.c | 4 ++++ + 1 files changed, 4 insertions(+), 0 deletions(-) + +--- a/arch/m68k/coldfire/ints.c ++++ b/arch/m68k/coldfire/ints.c +@@ -317,6 +317,10 @@ void disable_irq(unsigned int irq) + } + EXPORT_SYMBOL(disable_irq); + ++void disable_irq_nosync(unsigned int irq) __attribute__((alias("disable_irq"))); ++EXPORT_SYMBOL(disable_irq_nosync); ++ ++ + unsigned long probe_irq_on(void) + { + return 0; |