]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/cramfs/cramfs_fs_sb.h
NAND: Fix integer overflow in ONFI detection of chips >= 4GiB
[people/ms/u-boot.git] / include / cramfs / cramfs_fs_sb.h
1 #ifndef _CRAMFS_FS_SB
2 #define _CRAMFS_FS_SB
3
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
17 };
18
19 #endif