diff --git a/arch/ppc/mach-mpc5xxx/cpu.c b/arch/ppc/mach-mpc5xxx/cpu.c index a53af63..3f826e4 100644 --- a/arch/ppc/mach-mpc5xxx/cpu.c +++ b/arch/ppc/mach-mpc5xxx/cpu.c @@ -31,7 +31,7 @@ #include #include #include -#include +#include int checkcpu (void) { diff --git a/arch/ppc/mach-mpc5xxx/include/mach/clock.h b/arch/ppc/mach-mpc5xxx/include/mach/clock.h new file mode 100644 index 0000000..4e1a903 --- /dev/null +++ b/arch/ppc/mach-mpc5xxx/include/mach/clock.h @@ -0,0 +1,10 @@ +#ifndef __ASM_ARCH_CLOCKS_H +#define __ASM_ARCH_CLOCKS_H + +unsigned long get_bus_clock(void); +unsigned long get_cpu_clock(void); +unsigned long get_ipb_clock(void); +unsigned long get_pci_clock(void); +unsigned long get_timebase_clock(void); + +#endif /* __ASM_ARCH_CLOCKS_H */ diff --git a/arch/ppc/mach-mpc5xxx/include/mach/clocks.h b/arch/ppc/mach-mpc5xxx/include/mach/clocks.h deleted file mode 100644 index 4e1a903..0000000 --- a/arch/ppc/mach-mpc5xxx/include/mach/clocks.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef __ASM_ARCH_CLOCKS_H -#define __ASM_ARCH_CLOCKS_H - -unsigned long get_bus_clock(void); -unsigned long get_cpu_clock(void); -unsigned long get_ipb_clock(void); -unsigned long get_pci_clock(void); -unsigned long get_timebase_clock(void); - -#endif /* __ASM_ARCH_CLOCKS_H */ diff --git a/arch/ppc/mach-mpc5xxx/time.c b/arch/ppc/mach-mpc5xxx/time.c index 699a66d..aaa4573 100644 --- a/arch/ppc/mach-mpc5xxx/time.c +++ b/arch/ppc/mach-mpc5xxx/time.c @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include uint64_t ppc_clocksource_read(void) diff --git a/drivers/net/fec_mpc5200.c b/drivers/net/fec_mpc5200.c index 14ef872..30be8f7 100644 --- a/drivers/net/fec_mpc5200.c +++ b/drivers/net/fec_mpc5200.c @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include #include "fec_mpc5200.h" diff --git a/drivers/serial/serial_mpc5xxx.c b/drivers/serial/serial_mpc5xxx.c index f48255b..711163c 100644 --- a/drivers/serial/serial_mpc5xxx.c +++ b/drivers/serial/serial_mpc5xxx.c @@ -35,7 +35,7 @@ #include #include #include -#include +#include #include static int __mpc5xxx_serial_setbaudrate(struct mpc5xxx_psc *psc, int baudrate)