diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-01-31 12:34:00 +0000 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-31 20:37:05 +0800 |
commit | 9fc4cd828107d0196b1ac0f5dec1f3b747542470 (patch) | |
tree | 27ce03feb1a0e9d6a6bfb01018d57ebed634e810 /sound/soc/ux500 | |
parent | 949db153b6466c6f7cad5a427ecea94985927311 (diff) | |
download | op-kernel-dev-9fc4cd828107d0196b1ac0f5dec1f3b747542470.zip op-kernel-dev-9fc4cd828107d0196b1ac0f5dec1f3b747542470.tar.gz |
ASoC: Ux500: Fix build error pertaining to missing include file
Some compilers complain when building sound for MOP500:
sound/soc/ux500/mop500.c:27:27:
fatal error: mop500_ab8500.h: No such file or directory
That file is actually in the local directory rather than include.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/ux500')
-rw-r--r-- | sound/soc/ux500/mop500.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/ux500/mop500.c b/sound/soc/ux500/mop500.c index ae69907..204b899 100644 --- a/sound/soc/ux500/mop500.c +++ b/sound/soc/ux500/mop500.c @@ -24,7 +24,7 @@ #include "ux500_pcm.h" #include "ux500_msp_dai.h" -#include <mop500_ab8500.h> +#include "mop500_ab8500.h" /* Define the whole MOP500 soundcard, linking platform to the codec-drivers */ struct snd_soc_dai_link mop500_dai_links[] = { |