diff options
Diffstat (limited to 'include/linux/mtd/physmap.h')
-rw-r--r-- | include/linux/mtd/physmap.h | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/include/linux/mtd/physmap.h b/include/linux/mtd/physmap.h index c7b8bcdef013..50f954461aa8 100644 --- a/include/linux/mtd/physmap.h +++ b/include/linux/mtd/physmap.h | |||
@@ -24,22 +24,18 @@ | |||
24 | #include <linux/mtd/map.h> | 24 | #include <linux/mtd/map.h> |
25 | #include <linux/mtd/partitions.h> | 25 | #include <linux/mtd/partitions.h> |
26 | 26 | ||
27 | /* | 27 | struct physmap_flash_data { |
28 | * The map_info for physmap. Board can override size, buswidth, phys, | 28 | unsigned int width; |
29 | * (*set_vpp)(), etc in their initial setup routine. | 29 | void (*set_vpp)(struct map_info *, int); |
30 | */ | 30 | unsigned int nr_parts; |
31 | extern struct map_info physmap_map; | 31 | struct mtd_partition *parts; |
32 | }; | ||
32 | 33 | ||
33 | /* | 34 | /* |
34 | * Board needs to specify the exact mapping during their setup time. | 35 | * Board needs to specify the exact mapping during their setup time. |
35 | */ | 36 | */ |
36 | static inline void physmap_configure(unsigned long addr, unsigned long size, int bankwidth, void (*set_vpp)(struct map_info *, int) ) | 37 | void physmap_configure(unsigned long addr, unsigned long size, |
37 | { | 38 | int bankwidth, void (*set_vpp)(struct map_info *, int) ); |
38 | physmap_map.phys = addr; | ||
39 | physmap_map.size = size; | ||
40 | physmap_map.bankwidth = bankwidth; | ||
41 | physmap_map.set_vpp = set_vpp; | ||
42 | } | ||
43 | 39 | ||
44 | #if defined(CONFIG_MTD_PARTITIONS) | 40 | #if defined(CONFIG_MTD_PARTITIONS) |
45 | 41 | ||
@@ -58,4 +54,3 @@ void physmap_set_partitions(struct mtd_partition *parts, int num_parts); | |||
58 | #endif /* defined(CONFIG_MTD) */ | 54 | #endif /* defined(CONFIG_MTD) */ |
59 | 55 | ||
60 | #endif /* __LINUX_MTD_PHYSMAP__ */ | 56 | #endif /* __LINUX_MTD_PHYSMAP__ */ |
61 | |||