浏览代码

[ARM] pxa: fix incorrect order of AC97 reset pin configs

Reported-by: Dylan Cristiani <d.cristiani@idem-tech.it>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Eric Miao 15 年之前
父节点
当前提交
5e16e3cb83
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      arch/arm/mach-pxa/pxa27x.c

+ 3 - 3
arch/arm/mach-pxa/pxa27x.c

@@ -41,10 +41,10 @@ void pxa27x_clear_otgph(void)
 EXPORT_SYMBOL(pxa27x_clear_otgph);
 EXPORT_SYMBOL(pxa27x_clear_otgph);
 
 
 static unsigned long ac97_reset_config[] = {
 static unsigned long ac97_reset_config[] = {
-	GPIO95_AC97_nRESET,
-	GPIO95_GPIO,
-	GPIO113_AC97_nRESET,
 	GPIO113_GPIO,
 	GPIO113_GPIO,
+	GPIO113_AC97_nRESET,
+	GPIO95_GPIO,
+	GPIO95_AC97_nRESET,
 };
 };
 
 
 void pxa27x_assert_ac97reset(int reset_gpio, int on)
 void pxa27x_assert_ac97reset(int reset_gpio, int on)