| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * (C) 2001, 2001 Red Hat, Inc. | 
|  | 3 | * GPL'd | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ | 
|  | 5 |  | 
|  | 6 | #ifndef __LINUX_MTD_GEN_PROBE_H__ | 
|  | 7 | #define __LINUX_MTD_GEN_PROBE_H__ | 
|  | 8 |  | 
|  | 9 | #include <linux/mtd/flashchip.h> | 
| Thomas Gleixner | 61ecfa8 | 2005-11-07 11:15:31 +0000 | [diff] [blame] | 10 | #include <linux/mtd/map.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/mtd/cfi.h> | 
|  | 12 | #include <linux/bitops.h> | 
|  | 13 |  | 
|  | 14 | struct chip_probe { | 
|  | 15 | char *name; | 
|  | 16 | int (*probe_chip)(struct map_info *map, __u32 base, | 
|  | 17 | unsigned long *chip_map, struct cfi_private *cfi); | 
|  | 18 | }; | 
|  | 19 |  | 
|  | 20 | struct mtd_info *mtd_do_chip_probe(struct map_info *map, struct chip_probe *cp); | 
|  | 21 |  | 
|  | 22 | #endif /* __LINUX_MTD_GEN_PROBE_H__ */ |