From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753493AbdKHV2D (ORCPT ); Wed, 8 Nov 2017 16:28:03 -0500 Received: from lelnx193.ext.ti.com ([198.47.27.77]:38991 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752965AbdKHVZ7 (ORCPT ); Wed, 8 Nov 2017 16:25:59 -0500 From: "Andrew F. Davis" To: Liam Girdwood , Mark Brown , Rob Herring , Mark Rutland , =?UTF-8?q?Beno=C3=AEt=20Cousson?= , Tony Lindgren , Shawn Guo , Sascha Hauer CC: , , , "Andrew F . Davis" Subject: [PATCH 8/9] ASoC: tlv320aic31xx: Fix the reset GPIO OF name Date: Wed, 8 Nov 2017 15:25:04 -0600 Message-ID: <20171108212505.28320-9-afd@ti.com> X-Mailer: git-send-email 2.15.0 In-Reply-To: <20171108212505.28320-1-afd@ti.com> References: <20171108212505.28320-1-afd@ti.com> MIME-Version: 1.0 Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The correct DT property for specifying a GPIO used for reset is "reset-gpio", fix this here. Fixes: e00447fafbf7 ("ASoC: tlv320aic31xx: Add basic codec driver implementation") Signed-off-by: Andrew F. Davis --- sound/soc/codecs/tlv320aic31xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index 54a87a905eb6..359eba15bb89 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c @@ -1279,7 +1279,7 @@ static void aic31xx_pdata_from_of(struct aic31xx_priv *aic31xx) aic31xx->pdata.micbias_vg = MICBIAS_2_0V; } - ret = of_get_named_gpio(np, "gpio-reset", 0); + ret = of_get_named_gpio(np, "reset-gpio", 0); if (ret > 0) aic31xx->pdata.gpio_reset = ret; } -- 2.15.0