Skip to content

Commit

Permalink
mn10300: fix several bogus includes on abs2305
Browse files Browse the repository at this point in the history
asm/cpu never existed for mn10300; the files they are looking for are in
asm.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jan 11, 2010
1 parent e5d20d0 commit 07c706a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arch/mn10300/unit-asb2305/include/unit/serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#ifndef _ASM_UNIT_SERIAL_H
#define _ASM_UNIT_SERIAL_H

#include <asm/cpu/cpu-regs.h>
#include <asm/cpu-regs.h>
#include <proc/irq.h>
#include <linux/serial_reg.h>

Expand Down
2 changes: 1 addition & 1 deletion arch/mn10300/unit-asb2305/include/unit/timex.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <linux/irq.h>
#endif /* __ASSEMBLY__ */

#include <asm/cpu/timer-regs.h>
#include <asm/timer-regs.h>
#include <unit/clock.h>

/*
Expand Down
4 changes: 2 additions & 2 deletions arch/mn10300/unit-asb2305/leds.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include <linux/init.h>
#include <asm/io.h>
#include <asm/processor.h>
#include <asm/cpu/intctl-regs.h>
#include <asm/cpu/rtc-regs.h>
#include <asm/intctl-regs.h>
#include <asm/rtc-regs.h>
#include <unit/leds.h>

static const u8 asb2305_led_hex_tbl[16] = {
Expand Down
5 changes: 2 additions & 3 deletions arch/mn10300/unit-asb2305/unit-init.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
#include <asm/io.h>
#include <asm/setup.h>
#include <asm/processor.h>
#include <asm/cpu/intctl-regs.h>
#include <asm/cpu/rtc-regs.h>
#include <asm/cpu/serial-regs.h>
#include <asm/intctl-regs.h>
#include <asm/serial-regs.h>
#include <unit/serial.h>

/*
Expand Down

0 comments on commit 07c706a

Please sign in to comment.