Index: drivers/mtd/redboot.c =================================================================== RCS file: /home/cvs/mtd/drivers/mtd/redboot.c,v retrieving revision 1.20 diff -u -r1.20 redboot.c --- drivers/mtd/redboot.c 29 Mar 2006 08:43:21 -0000 1.20 +++ drivers/mtd/redboot.c 30 Mar 2006 17:15:03 -0000 @@ -15,14 +15,14 @@ struct fis_image_desc { unsigned char name[16]; // Null terminated name - unsigned long flash_base; // Address within FLASH of image - unsigned long mem_base; // Address in memory where it executes - unsigned long size; // Length of image - unsigned long entry_point; // Execution entry point - unsigned long data_length; // Length of actual data - unsigned char _pad[256-(16+7*sizeof(unsigned long))]; - unsigned long desc_cksum; // Checksum over image descriptor - unsigned long file_cksum; // Checksum over image data + __u32 flash_base; // Address within FLASH of image + __u32 mem_base; // Address in memory where it executes + __u32 size; // Length of image + __u32 entry_point; // Execution entry point + __u32 data_length; // Length of actual data + __u32 _pad[256-(16+7*sizeof(__u32))]; + __u32 desc_cksum; // Checksum over image descriptor + __u32 file_cksum; // Checksum over image data }; struct fis_list {