diff options
author | Andrew Lunn <andrew@lunn.ch> | 2012-10-20 07:23:15 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-11-18 22:53:46 -0500 |
commit | d1c925b22141b841060d8c1e3a9f9949a77cdc05 (patch) | |
tree | 310b60c09b62503cc9f2a760b47d9cd08ed15053 /arch/arm/mach-kirkwood/tsx1x-common.c | |
parent | 3ba09114a1cdca78e4578328ebc2fb6e910fe066 (diff) |
ARM: Kirkwood: Fix sparse warnings.
Mostly missing statics, but also missing include files
and void parameters.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-kirkwood/tsx1x-common.c')
-rw-r--r-- | arch/arm/mach-kirkwood/tsx1x-common.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-kirkwood/tsx1x-common.c b/arch/arm/mach-kirkwood/tsx1x-common.c index 8943ede29b44..cec87cef76ca 100644 --- a/arch/arm/mach-kirkwood/tsx1x-common.c +++ b/arch/arm/mach-kirkwood/tsx1x-common.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/serial_reg.h> | 7 | #include <linux/serial_reg.h> |
8 | #include <mach/kirkwood.h> | 8 | #include <mach/kirkwood.h> |
9 | #include "common.h" | 9 | #include "common.h" |
10 | #include "tsx1x-common.h" | ||
10 | 11 | ||
11 | /* | 12 | /* |
12 | * QNAP TS-x1x Boards flash | 13 | * QNAP TS-x1x Boards flash |
@@ -29,7 +30,7 @@ | |||
29 | * | 30 | * |
30 | ***************************************************************************/ | 31 | ***************************************************************************/ |
31 | 32 | ||
32 | struct mtd_partition qnap_tsx1x_partitions[] = { | 33 | static struct mtd_partition qnap_tsx1x_partitions[] = { |
33 | { | 34 | { |
34 | .name = "U-Boot", | 35 | .name = "U-Boot", |
35 | .size = 0x00080000, | 36 | .size = 0x00080000, |
@@ -58,14 +59,14 @@ struct mtd_partition qnap_tsx1x_partitions[] = { | |||
58 | }, | 59 | }, |
59 | }; | 60 | }; |
60 | 61 | ||
61 | const struct flash_platform_data qnap_tsx1x_flash = { | 62 | static const struct flash_platform_data qnap_tsx1x_flash = { |
62 | .type = "m25p128", | 63 | .type = "m25p128", |
63 | .name = "spi_flash", | 64 | .name = "spi_flash", |
64 | .parts = qnap_tsx1x_partitions, | 65 | .parts = qnap_tsx1x_partitions, |
65 | .nr_parts = ARRAY_SIZE(qnap_tsx1x_partitions), | 66 | .nr_parts = ARRAY_SIZE(qnap_tsx1x_partitions), |
66 | }; | 67 | }; |
67 | 68 | ||
68 | struct spi_board_info __initdata qnap_tsx1x_spi_slave_info[] = { | 69 | static struct spi_board_info __initdata qnap_tsx1x_spi_slave_info[] = { |
69 | { | 70 | { |
70 | .modalias = "m25p80", | 71 | .modalias = "m25p80", |
71 | .platform_data = &qnap_tsx1x_flash, | 72 | .platform_data = &qnap_tsx1x_flash, |