mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
ASoC: tegra20_ac97: Remove __devinitconst attribute
__devinitconst has been removed from the kernel and gives the following build errors: sound/soc/tegra/tegra20_ac97.c:460:58: error: Expected ; at end of declaration sound/soc/tegra/tegra20_ac97.c:460:58: error: got __devinitconst Cc: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Reviewed-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
b10fedf892
commit
d58579e3c3
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ static int tegra20_ac97_platform_remove(struct platform_device *pdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id tegra20_ac97_of_match[] __devinitconst = {
|
||||
static const struct of_device_id tegra20_ac97_of_match[] = {
|
||||
{ .compatible = "nvidia,tegra20-ac97", },
|
||||
{},
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue