aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/plat-s3c/dev-nand.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-s3c/dev-nand.c')
-rw-r--r--arch/arm/plat-s3c/dev-nand.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/arch/arm/plat-s3c/dev-nand.c b/arch/arm/plat-s3c/dev-nand.c
deleted file mode 100644
index 4e532373243..00000000000
--- a/arch/arm/plat-s3c/dev-nand.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * S3C series device definition for nand device
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
-*/
-
-#include <linux/kernel.h>
-#include <linux/platform_device.h>
-
-#include <mach/map.h>
-#include <plat/devs.h>
-
-static struct resource s3c_nand_resource[] = {
- [0] = {
- .start = S3C_PA_NAND,
- .end = S3C_PA_NAND + SZ_1M,
- .flags = IORESOURCE_MEM,
- }
-};
-
-struct platform_device s3c_device_nand = {
- .name = "s3c2410-nand",
- .id = -1,
- .num_resources = ARRAY_SIZE(s3c_nand_resource),
- .resource = s3c_nand_resource,
-};
-
-EXPORT_SYMBOL(s3c_device_nand);