ARM: dts: r8a7791: Reference both DMA controllers
[linux-2.6/btrfs-unstable.git] / arch / unicore32 / mm / extable.c
blob6564180eb285908fa594da57bc427f24503e105d
1 /*
2 * linux/arch/unicore32/mm/extable.c
4 * Code specific to PKUnity SoC and UniCore ISA
6 * Copyright (C) 2001-2010 GUAN Xue-tao
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/uaccess.h>
15 int fixup_exception(struct pt_regs *regs)
17 const struct exception_table_entry *fixup;
19 fixup = search_exception_tables(instruction_pointer(regs));
20 if (fixup)
21 regs->UCreg_pc = fixup->fixup;
23 return fixup != NULL;