Home | History | Annotate | Download | only in mtd

Lines Matching refs:map

25 #define map_bankwidth_is_1(map) (0)
27 #define map_bankwidth_is_2(map) (0)
29 #define map_bankwidth_is_4(map) (0)
31 #define map_calc_words(map) ((map_bankwidth(map) + (sizeof(unsigned long)-1))/ sizeof(unsigned long))
33 #define map_bankwidth_is_8(map) (0)
35 #define map_bankwidth_is_16(map) (0)
37 #define map_bankwidth_is_32(map) (0)
67 struct mtd_info *(*probe)(struct map_info *map);
74 struct mtd_info *do_map_probe(const char *name, struct map_info *map);
76 #define ENABLE_VPP(map) do { if(map->set_vpp) map->set_vpp(map, 1); } while(0)
77 #define DISABLE_VPP(map) do { if(map->set_vpp) map->set_vpp(map, 0); } while(0)
79 #define INVALIDATE_CACHED_RANGE(map, from, size) do { if(map->inval_cache) map->inval_cache(map, from, size); } while(0)
96 #define map_read(map, ofs) inline_map_read(map, ofs)
97 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len)
98 #define map_write(map, datum, ofs) inline_map_write(map, datum, ofs)
99 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len)
100 #define simple_map_init(map) BUG_ON(!map_bankwidth_supported((map)->bankwidth))
101 #define map_is_linear(map) ({ (void)(map); 1; })