code style scripts/checkpatch.pl (linux-3.9-rc1) formatting
[linux-2.6.34.14-moxart.git] / include / linux / mtd / nand-gpio.h
blob51534e50f7fc0c47c5da3e199f7ac17226e45caf
1 #ifndef __LINUX_MTD_NAND_GPIO_H
2 #define __LINUX_MTD_NAND_GPIO_H
4 #include <linux/mtd/nand.h>
6 struct gpio_nand_platdata {
7 int gpio_nce;
8 int gpio_nwp;
9 int gpio_cle;
10 int gpio_ale;
11 int gpio_rdy;
12 void (*adjust_parts)(struct gpio_nand_platdata *, size_t);
13 struct mtd_partition *parts;
14 unsigned int num_parts;
15 unsigned int options;
16 int chip_delay;
19 #endif