Micron MT29F NAND driver
MT_uint32 __as_uint32 ( MT_uint8  byte0,
MT_uint8  byte1,
MT_uint8  byte2,
MT_uint8  byte3 
)

Definition at line 2073 of file nand_MT29F_lld.c.

                                                                                      {
   #ifdef LITTLE_ENDIAN
      return ((MT_uint32) ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3));
   #endif
   #ifdef BIG_ENDIAN
      return ((MT_uint32) ((byte3 << 24) | (byte2 << 16) | (byte1 << 8) | byte0));
   #endif
}