diff options
Diffstat (limited to 'arch/sh/include/asm')
-rw-r--r-- | arch/sh/include/asm/bug.h | 4 | ||||
-rw-r--r-- | arch/sh/include/asm/io_noioport.h | 17 | ||||
-rw-r--r-- | arch/sh/include/asm/kdebug.h | 2 | ||||
-rw-r--r-- | arch/sh/include/asm/siu.h | 1 |
4 files changed, 20 insertions, 4 deletions
diff --git a/arch/sh/include/asm/bug.h b/arch/sh/include/asm/bug.h index 2b87d86bfc41..dcf278075429 100644 --- a/arch/sh/include/asm/bug.h +++ b/arch/sh/include/asm/bug.h | |||
@@ -110,6 +110,10 @@ do { \ | |||
110 | #include <asm-generic/bug.h> | 110 | #include <asm-generic/bug.h> |
111 | 111 | ||
112 | struct pt_regs; | 112 | struct pt_regs; |
113 | |||
114 | /* arch/sh/kernel/traps.c */ | ||
113 | extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn)); | 115 | extern void die(const char *str, struct pt_regs *regs, long err) __attribute__ ((noreturn)); |
116 | extern void die_if_kernel(const char *str, struct pt_regs *regs, long err); | ||
117 | extern void die_if_no_fixup(const char *str, struct pt_regs *regs, long err); | ||
114 | 118 | ||
115 | #endif /* __ASM_SH_BUG_H */ | 119 | #endif /* __ASM_SH_BUG_H */ |
diff --git a/arch/sh/include/asm/io_noioport.h b/arch/sh/include/asm/io_noioport.h index e136d28d1d2e..4d48f1436a63 100644 --- a/arch/sh/include/asm/io_noioport.h +++ b/arch/sh/include/asm/io_noioport.h | |||
@@ -19,9 +19,20 @@ static inline u32 inl(unsigned long addr) | |||
19 | return -1; | 19 | return -1; |
20 | } | 20 | } |
21 | 21 | ||
22 | #define outb(x, y) BUG() | 22 | static inline void outb(unsigned char x, unsigned long port) |
23 | #define outw(x, y) BUG() | 23 | { |
24 | #define outl(x, y) BUG() | 24 | BUG(); |
25 | } | ||
26 | |||
27 | static inline void outw(unsigned short x, unsigned long port) | ||
28 | { | ||
29 | BUG(); | ||
30 | } | ||
31 | |||
32 | static inline void outl(unsigned int x, unsigned long port) | ||
33 | { | ||
34 | BUG(); | ||
35 | } | ||
25 | 36 | ||
26 | #define inb_p(addr) inb(addr) | 37 | #define inb_p(addr) inb(addr) |
27 | #define inw_p(addr) inw(addr) | 38 | #define inw_p(addr) inw(addr) |
diff --git a/arch/sh/include/asm/kdebug.h b/arch/sh/include/asm/kdebug.h index a6201f10c273..8d6a831e7ba1 100644 --- a/arch/sh/include/asm/kdebug.h +++ b/arch/sh/include/asm/kdebug.h | |||
@@ -10,6 +10,8 @@ enum die_val { | |||
10 | DIE_SSTEP, | 10 | DIE_SSTEP, |
11 | }; | 11 | }; |
12 | 12 | ||
13 | /* arch/sh/kernel/dumpstack.c */ | ||
13 | extern void printk_address(unsigned long address, int reliable); | 14 | extern void printk_address(unsigned long address, int reliable); |
15 | extern void dump_mem(const char *str, unsigned long bottom, unsigned long top); | ||
14 | 16 | ||
15 | #endif /* __ASM_SH_KDEBUG_H */ | 17 | #endif /* __ASM_SH_KDEBUG_H */ |
diff --git a/arch/sh/include/asm/siu.h b/arch/sh/include/asm/siu.h index 1d95c78808d1..580b7ac228b7 100644 --- a/arch/sh/include/asm/siu.h +++ b/arch/sh/include/asm/siu.h | |||
@@ -14,7 +14,6 @@ | |||
14 | struct device; | 14 | struct device; |
15 | 15 | ||
16 | struct siu_platform { | 16 | struct siu_platform { |
17 | struct device *dma_dev; | ||
18 | unsigned int dma_slave_tx_a; | 17 | unsigned int dma_slave_tx_a; |
19 | unsigned int dma_slave_rx_a; | 18 | unsigned int dma_slave_rx_a; |
20 | unsigned int dma_slave_tx_b; | 19 | unsigned int dma_slave_tx_b; |