diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-18 12:27:10 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-18 12:27:10 -0400 |
| commit | 6c8bfb7f7d43602c7f76060253bdaa493cd2e8b8 (patch) | |
| tree | 33e4072d5539741e775788eb7dd0ffcf84208d3b | |
| parent | d9f5d41569731189e519fcee8578fcef5c916978 (diff) | |
| parent | 5e1c53356d79591b10cdea12e3d5ebace8e7b6fa (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
m68knommu: include sched.h in ColdFire/SPI driver
m68knommu: formatting of pointers in printk()
m68knommu: arch/m68k/include/asm/ide.h fix for nommu
| -rw-r--r-- | arch/m68k/include/asm/ide.h | 13 | ||||
| -rw-r--r-- | arch/m68knommu/kernel/process.c | 10 | ||||
| -rw-r--r-- | drivers/spi/coldfire_qspi.c | 1 |
3 files changed, 17 insertions, 7 deletions
diff --git a/arch/m68k/include/asm/ide.h b/arch/m68k/include/asm/ide.h index 3958726664ba..492fee8a1ab2 100644 --- a/arch/m68k/include/asm/ide.h +++ b/arch/m68k/include/asm/ide.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/include/asm-m68k/ide.h | ||
| 3 | * | ||
| 4 | * Copyright (C) 1994-1996 Linus Torvalds & authors | 2 | * Copyright (C) 1994-1996 Linus Torvalds & authors |
| 5 | */ | 3 | */ |
| 6 | 4 | ||
| @@ -34,6 +32,8 @@ | |||
| 34 | #include <asm/io.h> | 32 | #include <asm/io.h> |
| 35 | #include <asm/irq.h> | 33 | #include <asm/irq.h> |
| 36 | 34 | ||
| 35 | #ifdef CONFIG_MMU | ||
| 36 | |||
| 37 | /* | 37 | /* |
| 38 | * Get rid of defs from io.h - ide has its private and conflicting versions | 38 | * Get rid of defs from io.h - ide has its private and conflicting versions |
| 39 | * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we | 39 | * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we |
| @@ -53,5 +53,14 @@ | |||
| 53 | #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n) | 53 | #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n) |
| 54 | #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n) | 54 | #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n) |
| 55 | 55 | ||
| 56 | #else | ||
| 57 | |||
| 58 | #define __ide_mm_insw(port, addr, n) io_insw((unsigned int)port, addr, n) | ||
| 59 | #define __ide_mm_insl(port, addr, n) io_insl((unsigned int)port, addr, n) | ||
| 60 | #define __ide_mm_outsw(port, addr, n) io_outsw((unsigned int)port, addr, n) | ||
| 61 | #define __ide_mm_outsl(port, addr, n) io_outsl((unsigned int)port, addr, n) | ||
| 62 | |||
| 63 | #endif /* CONFIG_MMU */ | ||
| 64 | |||
| 56 | #endif /* __KERNEL__ */ | 65 | #endif /* __KERNEL__ */ |
| 57 | #endif /* _M68K_IDE_H */ | 66 | #endif /* _M68K_IDE_H */ |
diff --git a/arch/m68knommu/kernel/process.c b/arch/m68knommu/kernel/process.c index 4d090d3c0897..6d3390590e5b 100644 --- a/arch/m68knommu/kernel/process.c +++ b/arch/m68knommu/kernel/process.c | |||
| @@ -316,14 +316,14 @@ void dump(struct pt_regs *fp) | |||
| 316 | fp->d0, fp->d1, fp->d2, fp->d3); | 316 | fp->d0, fp->d1, fp->d2, fp->d3); |
| 317 | printk(KERN_EMERG "d4: %08lx d5: %08lx a0: %08lx a1: %08lx\n", | 317 | printk(KERN_EMERG "d4: %08lx d5: %08lx a0: %08lx a1: %08lx\n", |
| 318 | fp->d4, fp->d5, fp->a0, fp->a1); | 318 | fp->d4, fp->d5, fp->a0, fp->a1); |
| 319 | printk(KERN_EMERG "\nUSP: %08x TRAPFRAME: %08x\n", | 319 | printk(KERN_EMERG "\nUSP: %08x TRAPFRAME: %p\n", |
| 320 | (unsigned int) rdusp(), (unsigned int) fp); | 320 | (unsigned int) rdusp(), fp); |
| 321 | 321 | ||
| 322 | printk(KERN_EMERG "\nCODE:"); | 322 | printk(KERN_EMERG "\nCODE:"); |
| 323 | tp = ((unsigned char *) fp->pc) - 0x20; | 323 | tp = ((unsigned char *) fp->pc) - 0x20; |
| 324 | for (sp = (unsigned long *) tp, i = 0; (i < 0x40); i += 4) { | 324 | for (sp = (unsigned long *) tp, i = 0; (i < 0x40); i += 4) { |
| 325 | if ((i % 0x10) == 0) | 325 | if ((i % 0x10) == 0) |
| 326 | printk(KERN_EMERG "%08x: ", (int) (tp + i)); | 326 | printk(KERN_EMERG "%p: ", tp + i); |
| 327 | printk("%08x ", (int) *sp++); | 327 | printk("%08x ", (int) *sp++); |
| 328 | } | 328 | } |
| 329 | printk(KERN_EMERG "\n"); | 329 | printk(KERN_EMERG "\n"); |
| @@ -332,7 +332,7 @@ void dump(struct pt_regs *fp) | |||
| 332 | tp = ((unsigned char *) fp) - 0x40; | 332 | tp = ((unsigned char *) fp) - 0x40; |
| 333 | for (sp = (unsigned long *) tp, i = 0; (i < 0xc0); i += 4) { | 333 | for (sp = (unsigned long *) tp, i = 0; (i < 0xc0); i += 4) { |
| 334 | if ((i % 0x10) == 0) | 334 | if ((i % 0x10) == 0) |
| 335 | printk(KERN_EMERG "%08x: ", (int) (tp + i)); | 335 | printk(KERN_EMERG "%p: ", tp + i); |
| 336 | printk("%08x ", (int) *sp++); | 336 | printk("%08x ", (int) *sp++); |
| 337 | } | 337 | } |
| 338 | printk(KERN_EMERG "\n"); | 338 | printk(KERN_EMERG "\n"); |
| @@ -341,7 +341,7 @@ void dump(struct pt_regs *fp) | |||
| 341 | tp = (unsigned char *) (rdusp() - 0x10); | 341 | tp = (unsigned char *) (rdusp() - 0x10); |
| 342 | for (sp = (unsigned long *) tp, i = 0; (i < 0x80); i += 4) { | 342 | for (sp = (unsigned long *) tp, i = 0; (i < 0x80); i += 4) { |
| 343 | if ((i % 0x10) == 0) | 343 | if ((i % 0x10) == 0) |
| 344 | printk(KERN_EMERG "%08x: ", (int) (tp + i)); | 344 | printk(KERN_EMERG "%p: ", tp + i); |
| 345 | printk("%08x ", (int) *sp++); | 345 | printk("%08x ", (int) *sp++); |
| 346 | } | 346 | } |
| 347 | printk(KERN_EMERG "\n"); | 347 | printk(KERN_EMERG "\n"); |
diff --git a/drivers/spi/coldfire_qspi.c b/drivers/spi/coldfire_qspi.c index 59be3efe0636..052b3c7fa6a0 100644 --- a/drivers/spi/coldfire_qspi.c +++ b/drivers/spi/coldfire_qspi.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/errno.h> | 25 | #include <linux/errno.h> |
| 26 | #include <linux/platform_device.h> | 26 | #include <linux/platform_device.h> |
| 27 | #include <linux/sched.h> | ||
| 27 | #include <linux/workqueue.h> | 28 | #include <linux/workqueue.h> |
| 28 | #include <linux/delay.h> | 29 | #include <linux/delay.h> |
| 29 | #include <linux/io.h> | 30 | #include <linux/io.h> |
