fix silliness in [8886]
authorMatteo Croce <matteo@openwrt.org>
Thu, 20 Sep 2007 19:46:58 +0000 (19:46 +0000)
committerMatteo Croce <matteo@openwrt.org>
Thu, 20 Sep 2007 19:46:58 +0000 (19:46 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8889 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar7/files/drivers/mtd/ar7part.c

index a7b42c9..3d160d4 100644 (file)
 #define AR7_PARTS      4
 #define ROOT_OFFSET    0xe0000
 
-#ifdef CONFIG_CPU_LITTLE_ENDIAN
-#define LOADER_MAGIC1  0xfeedfa42
-#define LOADER_MAGIC2  0xfeed1281
-#else
-#define LOADER_MAGIC1  0x42faedfe
-#define LOADER_MAGIC2  0x8112edfe
-#endif
+#define LOADER_MAGIC1  le32_to_cpu(0xfeedfa42)
+#define LOADER_MAGIC2  le32_to_cpu(0xfeed1281)
 
 struct ar7_bin_rec {
        unsigned int checksum;