diff options
author | kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> | 2009-11-03 18:08:41 +0900 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2009-11-27 16:26:12 -0600 |
commit | 492fb1fdbcdd5e21be0b6742c15f76c648f0653b (patch) | |
tree | f49c1af76281fecc778a0a3712838a556c4bc67d /include | |
parent | 2d251ccaa90997012e0b1f13bf791df2bf03a144 (diff) | |
download | u-boot-imx-492fb1fdbcdd5e21be0b6742c15f76c648f0653b.zip u-boot-imx-492fb1fdbcdd5e21be0b6742c15f76c648f0653b.tar.gz u-boot-imx-492fb1fdbcdd5e21be0b6742c15f76c648f0653b.tar.bz2 |
Move s3c24x0 header files to asm-arm/arch-s3c24x0/
This patch moves the s3c24x0 header files from include/ to
include/asm-arm/arch-s3c24x0/.
checkpatch.pl showed 2 errors and 3 warnings. The 2 errors were both due
to a non-UTF8 character in David M?ller's name:
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#489: FILE: include/asm-arm/arch-s3c24x0/s3c2410.h:3:
+ * David M?ller ELSOFT AG Switzerland. d.mueller@elsoft.ch
As David's name correctly contains a non-UTF8 character I haven't fixed
these errors.
The 3 warnings were all because of the use of 'volatile' in s3c24x0.h:
WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt
#673: FILE: include/asm-arm/arch-s3c24x0/s3c24x0.h:35:
+typedef volatile u8 S3C24X0_REG8;
+typedef volatile u16 S3C24X0_REG16;
+typedef volatile u32 S3C24X0_REG32;
I'll fix these errors in another patch.
Tested by running MAKEALL for ARM8 targets and ensuring there were no new
errors or warnings.
Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-s3c24x0/s3c2400.h (renamed from include/s3c2400.h) | 2 | ||||
-rw-r--r-- | include/asm-arm/arch-s3c24x0/s3c2410.h (renamed from include/s3c2410.h) | 2 | ||||
-rw-r--r-- | include/asm-arm/arch-s3c24x0/s3c24x0.h (renamed from include/s3c24x0.h) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/include/s3c2400.h b/include/asm-arm/arch-s3c24x0/s3c2400.h index 062259d..26bd4e4 100644 --- a/include/s3c2400.h +++ b/include/asm-arm/arch-s3c24x0/s3c2400.h @@ -60,7 +60,7 @@ enum s3c24x0_uarts_nr { #define S3C2400_MMC_BASE 0x15A00000 /* include common stuff */ -#include <s3c24x0.h> +#include <asm/arch/s3c24x0.h> static inline struct s3c24x0_memctl *s3c24x0_get_base_memctl(void) diff --git a/include/s3c2410.h b/include/asm-arm/arch-s3c24x0/s3c2410.h index 03b33b4..be2e76e 100644 --- a/include/s3c2410.h +++ b/include/asm-arm/arch-s3c24x0/s3c2410.h @@ -66,7 +66,7 @@ enum s3c24x0_uarts_nr { /* include common stuff */ -#include <s3c24x0.h> +#include <asm/arch/s3c24x0.h> static inline struct s3c24x0_memctl *s3c24x0_get_base_memctl(void) diff --git a/include/s3c24x0.h b/include/asm-arm/arch-s3c24x0/s3c24x0.h index 56a551a..56a551a 100644 --- a/include/s3c24x0.h +++ b/include/asm-arm/arch-s3c24x0/s3c24x0.h |