diff options
author | kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> | 2009-11-04 17:49:31 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2009-11-10 11:12:14 +0900 |
commit | 288822372010272ad8ef5b0cd53cf0cd5ab18680 (patch) | |
tree | e8fd17ecab45e481e54b6d44ecd5831c72baf3ba /board/mpl | |
parent | b6d8992cbbe5f04c11f7e6e09c09ae1a031d8720 (diff) | |
download | u-boot-imx-288822372010272ad8ef5b0cd53cf0cd5ab18680.zip u-boot-imx-288822372010272ad8ef5b0cd53cf0cd5ab18680.tar.gz u-boot-imx-288822372010272ad8ef5b0cd53cf0cd5ab18680.tar.bz2 |
Clean-up of s3c24x0 header files
Cleans up the s3c24x0 header files:
s4c24x0.h: removes the use of 'volatile' from the S3C24X0_REG8,
S3C24X0_REG16 and S3C24X0_REG32 register typedef's. Registers are always
accessed using the IO accessor functions which cast the register address
as 'volatile' anyway so it isn't required here.
s3c2400.h and s3c2410.h: insert a blank line between the static inline
functions
Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
Diffstat (limited to 'board/mpl')
-rw-r--r-- | board/mpl/vcma9/vcma9.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/mpl/vcma9/vcma9.h b/board/mpl/vcma9/vcma9.h index 9f32808..2c4305c 100644 --- a/board/mpl/vcma9/vcma9.h +++ b/board/mpl/vcma9/vcma9.h @@ -118,13 +118,13 @@ static inline u32 NF_Read_ECC(void) /* VCMA9 PLD regsiters */ typedef struct { - S3C24X0_REG8 ID; - S3C24X0_REG8 NIC; - S3C24X0_REG8 CAN; - S3C24X0_REG8 MISC; - S3C24X0_REG8 GPCD; - S3C24X0_REG8 BOARD; - S3C24X0_REG8 SDRAM; + u8 ID; + u8 NIC; + u8 CAN; + u8 MISC; + u8 GPCD; + u8 BOARD; + u8 SDRAM; } /*__attribute__((__packed__))*/ VCMA9_PLD; #define VCMA9_PLD_BASE 0x2C000100 |