forked from mirrors/linux
		
	 7e227e8818
			
		
	
	
		7e227e8818
		
	
	
	
	
		
			
			This file was only including module.h for exception table related functions. We've now separated that content out into its own file "extable.h" so now move over to that and avoid all the extra header content in module.h that we don't really need to compile this file. Reported-by: kbuild test robot <lkp@intel.com> Cc: Ley Foon Tan <lftan@altera.com> Reviewed-by: Tobias Klauser <tklauser@distanz.ch> Cc: nios2-dev@lists.rocketboards.org Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			624 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			624 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2010, Tobias Klauser <tklauser@distanz.ch>
 | |
|  * Copyright (C) 2009, Wind River Systems Inc
 | |
|  *   Implemented by fredrik.markstrom@gmail.com and ivarholmqvist@gmail.com
 | |
|  *
 | |
|  * This file is subject to the terms and conditions of the GNU General Public
 | |
|  * License.  See the file "COPYING" in the main directory of this archive
 | |
|  * for more details.
 | |
|  */
 | |
| 
 | |
| #include <linux/extable.h>
 | |
| #include <linux/uaccess.h>
 | |
| 
 | |
| int fixup_exception(struct pt_regs *regs)
 | |
| {
 | |
| 	const struct exception_table_entry *fixup;
 | |
| 
 | |
| 	fixup = search_exception_tables(regs->ea);
 | |
| 	if (fixup) {
 | |
| 		regs->ea = fixup->fixup;
 | |
| 		return 1;
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| }
 |