* Patch by Pierre Aubert, 24 Nov 2003:

- add a return value for the fpga command
  - add ide_preinit() function called in ide_init if CONFIG_IDE_PREINIT
    is defined. If ide_preinit fails, ide_init is aborted.
  - fix an endianess problem in fat.h
This commit is contained in:
wdenk 2003-12-07 23:55:12 +00:00
parent 3bbc899fc0
commit 9fd5e31fe0
7 changed files with 44 additions and 22 deletions

View file

@ -89,7 +89,7 @@
#define FAT2CPU16 le16_to_cpu
#define FAT2CPU32 le32_to_cpu
#else
#if 1
#if __LITTLE_ENDIAN
#define FAT2CPU16(x) (x)
#define FAT2CPU32(x) (x)
#else