aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2015-03-31 10:48:57 -0400
committerMark Brown <broonie@kernel.org>2015-04-01 04:31:19 -0400
commit9a42ab04aae96d47cd86e065b5127e472fd9eab9 (patch)
tree73b9d51af568ac3337516619b10e3226b8ace091
parent3b6281cf2893a3c140a37be817b0802c46af292b (diff)
ASoC: fsi: mark several data structures as const
A driver's platform_device_id and device data should and can be const. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/sh/fsi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c
index 5d26f8c98650..0c2af21b0b82 100644
--- a/sound/soc/sh/fsi.c
+++ b/sound/soc/sh/fsi.c
@@ -1876,7 +1876,7 @@ static void fsi_handler_init(struct fsi_priv *fsi,
1876 } 1876 }
1877} 1877}
1878 1878
1879static struct fsi_core fsi1_core = { 1879static const struct fsi_core fsi1_core = {
1880 .ver = 1, 1880 .ver = 1,
1881 1881
1882 /* Interrupt */ 1882 /* Interrupt */
@@ -1885,7 +1885,7 @@ static struct fsi_core fsi1_core = {
1885 .imsk = IMSK, 1885 .imsk = IMSK,
1886}; 1886};
1887 1887
1888static struct fsi_core fsi2_core = { 1888static const struct fsi_core fsi2_core = {
1889 .ver = 2, 1889 .ver = 2,
1890 1890
1891 /* Interrupt */ 1891 /* Interrupt */
@@ -1903,7 +1903,7 @@ static const struct of_device_id fsi_of_match[] = {
1903}; 1903};
1904MODULE_DEVICE_TABLE(of, fsi_of_match); 1904MODULE_DEVICE_TABLE(of, fsi_of_match);
1905 1905
1906static struct platform_device_id fsi_id_table[] = { 1906static const struct platform_device_id fsi_id_table[] = {
1907 { "sh_fsi", (kernel_ulong_t)&fsi1_core }, 1907 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1908 { "sh_fsi2", (kernel_ulong_t)&fsi2_core }, 1908 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
1909 {}, 1909 {},