diff options
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm920t/s3c24x0/interrupts.c | 4 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/speed.c | 4 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/timer.c | 4 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/usb.c | 4 | ||||
-rw-r--r-- | cpu/arm920t/s3c24x0/usb_ohci.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/cpu/arm920t/s3c24x0/interrupts.c b/cpu/arm920t/s3c24x0/interrupts.c index 9148946..3e8422e 100644 --- a/cpu/arm920t/s3c24x0/interrupts.c +++ b/cpu/arm920t/s3c24x0/interrupts.c @@ -32,9 +32,9 @@ #include <common.h> #if defined(CONFIG_S3C2400) -#include <s3c2400.h> +#include <asm/arch/s3c2400.h> #elif defined(CONFIG_S3C2410) -#include <s3c2410.h> +#include <asm/arch/s3c2410.h> #endif #include <asm/proc-armv/ptrace.h> diff --git a/cpu/arm920t/s3c24x0/speed.c b/cpu/arm920t/s3c24x0/speed.c index 136c779..85c73a3 100644 --- a/cpu/arm920t/s3c24x0/speed.c +++ b/cpu/arm920t/s3c24x0/speed.c @@ -35,9 +35,9 @@ #include <asm/io.h> #if defined(CONFIG_S3C2400) -#include <s3c2400.h> +#include <asm/arch/s3c2400.h> #elif defined(CONFIG_S3C2410) -#include <s3c2410.h> +#include <asm/arch/s3c2410.h> #endif #define MPLL 0 diff --git a/cpu/arm920t/s3c24x0/timer.c b/cpu/arm920t/s3c24x0/timer.c index 20cedd4..2667da6 100644 --- a/cpu/arm920t/s3c24x0/timer.c +++ b/cpu/arm920t/s3c24x0/timer.c @@ -37,9 +37,9 @@ #include <asm/io.h> #if defined(CONFIG_S3C2400) -#include <s3c2400.h> +#include <asm/arch/s3c2400.h> #elif defined(CONFIG_S3C2410) -#include <s3c2410.h> +#include <asm/arch/s3c2410.h> #endif int timer_load_val = 0; diff --git a/cpu/arm920t/s3c24x0/usb.c b/cpu/arm920t/s3c24x0/usb.c index b5ba8c4..5e19cda 100644 --- a/cpu/arm920t/s3c24x0/usb.c +++ b/cpu/arm920t/s3c24x0/usb.c @@ -27,9 +27,9 @@ # if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) #if defined(CONFIG_S3C2400) -# include <s3c2400.h> +# include <asm/arch/s3c2400.h> #elif defined(CONFIG_S3C2410) -# include <s3c2410.h> +# include <asm/arch/s3c2410.h> #endif #include <asm/io.h> diff --git a/cpu/arm920t/s3c24x0/usb_ohci.c b/cpu/arm920t/s3c24x0/usb_ohci.c index 7672e4c..4111992 100644 --- a/cpu/arm920t/s3c24x0/usb_ohci.c +++ b/cpu/arm920t/s3c24x0/usb_ohci.c @@ -39,9 +39,9 @@ #ifdef CONFIG_USB_OHCI #if defined(CONFIG_S3C2400) -#include <s3c2400.h> +#include <asm/arch/s3c2400.h> #elif defined(CONFIG_S3C2410) -#include <s3c2410.h> +#include <asm/arch/s3c2410.h> #endif #include <asm/io.h> |