diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2013-01-16 12:09:45 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-16 20:28:59 +0900 |
commit | e43fc6af2538a7a30e695227928eed8a29aa4f63 (patch) | |
tree | ddeb1081a6c2cf76cdc0c4a44352c6226eff73f1 | |
parent | 9e7b6d60d880a463b17e4eae0d61c9f9a12f22bb (diff) | |
download | linux-e43fc6af2538a7a30e695227928eed8a29aa4f63.tar.bz2 |
ASoC: fsi: Remove __devinitconst
__devinitconst and friends have recently been removed and must not be
used anymore.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | sound/soc/sh/fsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index 91576120cd47..c724026a246f 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c @@ -2160,7 +2160,7 @@ static struct fsi_core fsi2_core = { .b_mclk = B_MST_CTLR, }; -static struct of_device_id fsi_of_match[] __devinitconst = { +static struct of_device_id fsi_of_match[] = { { .compatible = "renesas,sh_fsi", .data = &fsi1_core}, { .compatible = "renesas,sh_fsi2", .data = &fsi2_core}, {}, |