diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-08-26 22:54:02 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-08-26 22:56:20 +0100 |
commit | ec8292347b5052633b46b562598b0e3ee7875ce7 (patch) | |
tree | bd55980092a69483c1374404fca09a41c5813f2e /arch/arm | |
parent | b8e6c91c74e9f0279b7c51048779b3d62da60b88 (diff) | |
download | op-kernel-dev-ec8292347b5052633b46b562598b0e3ee7875ce7.zip op-kernel-dev-ec8292347b5052633b46b562598b0e3ee7875ce7.tar.gz |
[ARM] S3C24XX: Fix nor-simtec driver sparse errors
Fix the following sparse errors in arch/arm/mach-s3c2410/nor-simtec.c:
53:27: warning: symbol 'simtec_nor_pdata' was not declared. Should it be static?
77:13: warning: symbol 'nor_simtec_init' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-s3c2410/nor-simtec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/nor-simtec.c b/arch/arm/mach-s3c2410/nor-simtec.c index b2ae237..598d130 100644 --- a/arch/arm/mach-s3c2410/nor-simtec.c +++ b/arch/arm/mach-s3c2410/nor-simtec.c @@ -30,6 +30,7 @@ #include <mach/bast-map.h> #include <mach/bast-cpld.h> +#include "nor-simtec.h" static void simtec_nor_vpp(struct map_info *map, int vpp) { @@ -50,7 +51,7 @@ static void simtec_nor_vpp(struct map_info *map, int vpp) local_irq_restore(flags); } -struct physmap_flash_data simtec_nor_pdata = { +static struct physmap_flash_data simtec_nor_pdata = { .width = 2, .set_vpp = simtec_nor_vpp, .nr_parts = 0, |