add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / include / cramfs / cramfs_fs_sb.h
blobbc23f94b94aea662b484f650f990fcef5c595a5d
1 #ifndef _CRAMFS_FS_SB
2 #define _CRAMFS_FS_SB
4 /*
5 * cramfs super-block data in memory
6 */
7 struct cramfs_sb_info {
8 unsigned long magic;
9 unsigned long size;
10 unsigned long blocks;
11 unsigned long files;
12 unsigned long flags;
13 #ifdef CONFIG_CRAMFS_LINEAR
14 unsigned long linear_phys_addr;
15 char * linear_virt_addr;
16 #endif
19 #endif