Title: [6432] trunk/include/linux: move cramfs magic to magic.h where it belongs
Revision
6432
Author
vapier
Date
2009-05-20 19:12:16 -0500 (Wed, 20 May 2009)

Log Message

move cramfs magic to magic.h where it belongs

Modified Paths


Diff

Modified: trunk/include/linux/cramfs_fs.h (6431 => 6432)


--- trunk/include/linux/cramfs_fs.h	2009-05-20 23:55:37 UTC (rev 6431)
+++ trunk/include/linux/cramfs_fs.h	2009-05-21 00:12:16 UTC (rev 6432)
@@ -2,9 +2,8 @@
 #define __CRAMFS_H
 
 #include <linux/types.h>
+#include <linux/magic.h>
 
-#define CRAMFS_MAGIC		0x28cd3d45	/* some random number */
-#define CRAMFS_MAGIC_WEND	0x453dcd28	/* magic number with the wrong endianess */
 #define CRAMFS_SIGNATURE	"Compressed ROMFS"
 
 /*

Modified: trunk/include/linux/magic.h (6431 => 6432)


--- trunk/include/linux/magic.h	2009-05-20 23:55:37 UTC (rev 6431)
+++ trunk/include/linux/magic.h	2009-05-21 00:12:16 UTC (rev 6432)
@@ -6,6 +6,8 @@
 #define AFS_SUPER_MAGIC                0x5346414F
 #define AUTOFS_SUPER_MAGIC	0x0187
 #define CODA_SUPER_MAGIC	0x73757245
+#define CRAMFS_MAGIC		0x28cd3d45	/* some random number */
+#define CRAMFS_MAGIC_WEND	0x453dcd28	/* magic number with the wrong endianess */
 #define DEBUGFS_MAGIC          0x64626720
 #define SYSFS_MAGIC		0x62656572
 #define SECURITYFS_MAGIC	0x73636673
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to