浏览代码

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>
Lee Jones 12 年之前
父节点
当前提交
9fc4cd8281
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      sound/soc/ux500/mop500.c

+ 1 - 1
sound/soc/ux500/mop500.c

@@ -24,7 +24,7 @@
 #include "ux500_pcm.h"
 #include "ux500_pcm.h"
 #include "ux500_msp_dai.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  */
 /* Define the whole MOP500 soundcard, linking platform to the codec-drivers  */
 struct snd_soc_dai_link mop500_dai_links[] = {
 struct snd_soc_dai_link mop500_dai_links[] = {