blob: e166432910ad0e2745de9eb44c1e699e0be32a4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __MACH_GPMI_H
#include <linux/mtd/partitions.h>
#include <mach/regs-gpmi.h>
struct gpmi_platform_data {
void *pins;
int nr_parts;
struct mtd_partition *parts;
const char *part_types[];
};
#endif
|