diff options
author | Huang Shijie <shijie8@gmail.com> | 2012-10-13 13:03:29 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-11-15 08:37:50 -0500 |
commit | 5de0b52ea8f8f5149502867acff2efb5efaf1fc2 (patch) | |
tree | 04dd599c84b1b4619597b1a2b8d5a3e70fff9b4f /drivers/mtd/nand | |
parent | 18afbc54c4944b6c93f3888d97db0d1257a4b5e9 (diff) |
mtd: gpmi: remove unneccessary header
The whole gpmi-nand driver has turned to pure devicetree supported.
So the linux/mtd/gpmi-nand.h is not neccessary now. Just remove it,
and move some macros to the gpmi-nand driver itself.
Signed-off-by: Huang Shijie <shijie8@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/gpmi-nand/gpmi-lib.c | 1 | ||||
-rw-r--r-- | drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 7 | ||||
-rw-r--r-- | drivers/mtd/nand/gpmi-nand/gpmi-nand.h | 1 |
3 files changed, 6 insertions, 3 deletions
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c index 3502accd4bc3..1585c5b1c8bf 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c +++ b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c | |||
@@ -18,7 +18,6 @@ | |||
18 | * with this program; if not, write to the Free Software Foundation, Inc., | 18 | * with this program; if not, write to the Free Software Foundation, Inc., |
19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
20 | */ | 20 | */ |
21 | #include <linux/mtd/gpmi-nand.h> | ||
22 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
23 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
24 | 23 | ||
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index e2c56fc4574b..d37619882fa6 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
26 | #include <linux/interrupt.h> | 26 | #include <linux/interrupt.h> |
27 | #include <linux/module.h> | 27 | #include <linux/module.h> |
28 | #include <linux/mtd/gpmi-nand.h> | ||
29 | #include <linux/mtd/partitions.h> | 28 | #include <linux/mtd/partitions.h> |
30 | #include <linux/pinctrl/consumer.h> | 29 | #include <linux/pinctrl/consumer.h> |
31 | #include <linux/of.h> | 30 | #include <linux/of.h> |
@@ -33,6 +32,12 @@ | |||
33 | #include <linux/of_mtd.h> | 32 | #include <linux/of_mtd.h> |
34 | #include "gpmi-nand.h" | 33 | #include "gpmi-nand.h" |
35 | 34 | ||
35 | /* Resource names for the GPMI NAND driver. */ | ||
36 | #define GPMI_NAND_GPMI_REGS_ADDR_RES_NAME "gpmi-nand" | ||
37 | #define GPMI_NAND_BCH_REGS_ADDR_RES_NAME "bch" | ||
38 | #define GPMI_NAND_BCH_INTERRUPT_RES_NAME "bch" | ||
39 | #define GPMI_NAND_DMA_INTERRUPT_RES_NAME "gpmi-dma" | ||
40 | |||
36 | /* add our owner bbt descriptor */ | 41 | /* add our owner bbt descriptor */ |
37 | static uint8_t scan_ff_pattern[] = { 0xff }; | 42 | static uint8_t scan_ff_pattern[] = { 0xff }; |
38 | static struct nand_bbt_descr gpmi_bbt_descr = { | 43 | static struct nand_bbt_descr gpmi_bbt_descr = { |
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.h b/drivers/mtd/nand/gpmi-nand/gpmi-nand.h index 7ac25c1e58f9..3d93a5e39090 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.h +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.h | |||
@@ -130,7 +130,6 @@ struct gpmi_nand_data { | |||
130 | /* System Interface */ | 130 | /* System Interface */ |
131 | struct device *dev; | 131 | struct device *dev; |
132 | struct platform_device *pdev; | 132 | struct platform_device *pdev; |
133 | struct gpmi_nand_platform_data *pdata; | ||
134 | 133 | ||
135 | /* Resources */ | 134 | /* Resources */ |
136 | struct resources resources; | 135 | struct resources resources; |