diff options
author | Wolfgang Denk <wd@denx.de> | 2008-03-27 00:03:57 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-27 00:03:57 +0100 |
commit | d049cc7f71c0d875e8f5099d1ed23666a82b8f8e (patch) | |
tree | d923e2129fb09121ce0c26a607346055a80016d4 /include | |
parent | fd0b1fe3c388a77e8fe00cdd930ca317a91198d4 (diff) | |
download | u-boot-imx-d049cc7f71c0d875e8f5099d1ed23666a82b8f8e.zip u-boot-imx-d049cc7f71c0d875e8f5099d1ed23666a82b8f8e.tar.gz u-boot-imx-d049cc7f71c0d875e8f5099d1ed23666a82b8f8e.tar.bz2 |
Coding style cleanup, update CHANGELOG
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/libata.h | 14 | ||||
-rw-r--r-- | include/part.h | 8 |
2 files changed, 11 insertions, 11 deletions
diff --git a/include/libata.h b/include/libata.h index a5d1c4f..aedba74 100644 --- a/include/libata.h +++ b/include/libata.h @@ -168,13 +168,13 @@ enum { #define ata_id_has_ncq(id) ((id)[76] & (1 << 8)) #define ata_id_queue_depth(id) (((id)[75] & 0x1f) + 1) -#define ata_id_u32(id,n) \ - (((u32) (id)[(n) + 1] << 16) | ((u32) (id)[(n)])) -#define ata_id_u64(id,n) \ - ( ((u64) (id)[(n) + 3] << 48) | \ - ((u64) (id)[(n) + 2] << 32) | \ - ((u64) (id)[(n) + 1] << 16) | \ - ((u64) (id)[(n) + 0]) ) +#define ata_id_u32(id,n) \ + (((u32) (id)[(n) + 1] << 16) | ((u32) (id)[(n)])) +#define ata_id_u64(id,n) \ + ( ((u64) (id)[(n) + 3] << 48) | \ + ((u64) (id)[(n) + 2] << 32) | \ + ((u64) (id)[(n) + 1] << 16) | \ + ((u64) (id)[(n) + 0]) ) static inline unsigned int ata_id_major_version(const u16 *id) diff --git a/include/part.h b/include/part.h index cb1b758..b22a637 100644 --- a/include/part.h +++ b/include/part.h @@ -27,8 +27,8 @@ typedef struct block_dev_desc { int if_type; /* type of the interface */ - int dev; /* device number */ - unsigned char part_type; /* partition type */ + int dev; /* device number */ + unsigned char part_type; /* partition type */ unsigned char target; /* target SCSI ID */ unsigned char lun; /* target LUN */ unsigned char type; /* device type */ @@ -36,9 +36,9 @@ typedef struct block_dev_desc { #ifdef CONFIG_LBA48 unsigned char lba48; /* device can use 48bit addr (ATA/ATAPI v7) */ #endif - lbaint_t lba; /* number of blocks */ + lbaint_t lba; /* number of blocks */ unsigned long blksz; /* block size */ - char vendor [40+1]; /* IDE model, SCSI Vendor */ + char vendor [40+1]; /* IDE model, SCSI Vendor */ char product[20+1]; /* IDE Serial no, SCSI product */ char revision[8+1]; /* firmware revision */ unsigned long (*block_read)(int dev, |