]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/cramfs_fs.h
net: delete excess kernel-doc notation
[linux-2.6-omap-h63xx.git] / include / linux / cramfs_fs.h
index a41f38428c37d794ac80f947502c4142123a4afc..3be4e5a27d82f4f3bbf24d1fa1eb78af78516dfc 100644 (file)
@@ -4,6 +4,7 @@
 #include <linux/types.h>
 
 #define CRAMFS_MAGIC           0x28cd3d45      /* some random number */
+#define CRAMFS_MAGIC_WEND      0x453dcd28      /* magic number with the wrong endianess */
 #define CRAMFS_SIGNATURE       "Compressed ROMFS"
 
 /*
@@ -87,6 +88,6 @@ struct cramfs_super {
 /* Uncompression interfaces to the underlying zlib */
 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
 int cramfs_uncompress_init(void);
-int cramfs_uncompress_exit(void);
+void cramfs_uncompress_exit(void);
 
 #endif