mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
* Patch by Rune Torgersen, 27 Feb 2004:
- Added LBA48 support (CONFIG_LBA48 & CFG_64BIT_LBA) - Added support for 64bit printing in vsprintf (CFG_64BIT_VSPRINTF) - Added support for 64bit strtoul (CFG_64BIT_STRTOUL) * Patch by Masami Komiya, 27 Feb 2004: Fix rarpboot: add autoload by NFS * Patch by Dan Eisenhut, 26 Feb 2004: fix flash_write return value in saveenv * Patch by Stephan Linz, 11 Dec 2003 expand config.mk to avoid trigraph warnings on NIOS * Rename "BMS2003" board into "HMI10"
This commit is contained in:
@@ -38,12 +38,18 @@
|
||||
|
||||
#endif /* CONFIG_IDE_LED */
|
||||
|
||||
#if CFG_64BIT_LBA
|
||||
typedef uint64_t lbaint_t;
|
||||
#else
|
||||
typedef ulong lbaint_t;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Function Prototypes
|
||||
*/
|
||||
|
||||
void ide_init (void);
|
||||
ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer);
|
||||
ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer);
|
||||
ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
|
||||
ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
|
||||
|
||||
#endif /* _IDE_H */
|
||||
|
Reference in New Issue
Block a user