Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29abfbd9 authored by Al Viro's avatar Al Viro
Browse files

mips: separate extable.h, switch module.h to it



more victims of indirect include chains - au1200fb
lasat/picvue_proc and watchdog/ath79_wdt

... as well as tb0219, spotted by Sudip Mukherjee

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 45caf470
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
#ifndef _ASM_EXTABLE_H
#define _ASM_EXTABLE_H

struct exception_table_entry
{
	unsigned long insn;
	unsigned long nextinsn;
};

struct pt_regs;
extern int fixup_exception(struct pt_regs *regs);

#endif
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@

#include <linux/list.h>
#include <linux/elf.h>
#include <asm/uaccess.h>
#include <asm/extable.h>

struct mod_arch_specific {
	/* Data Bus Error exception tables */
+1 −8
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
#include <linux/thread_info.h>
#include <linux/string.h>
#include <asm/asm-eva.h>
#include <asm/extable.h>

/*
 * The fs value determines whether argument validity checking should be
@@ -1485,12 +1486,4 @@ static inline long strnlen_user(const char __user *s, long n)
	return res;
}

struct exception_table_entry
{
	unsigned long insn;
	unsigned long nextinsn;
};

extern int fixup_exception(struct pt_regs *regs);

#endif /* _ASM_UACCESS_H */
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

#include <linux/timer.h>
#include <linux/mutex.h>
#include <linux/uaccess.h>

#include "picvue.h"

+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/uaccess.h>

#include <asm/io.h>
#include <asm/reboot.h>
Loading