From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5FC16C432BE for ; Wed, 1 Sep 2021 17:02:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3E37A61074 for ; Wed, 1 Sep 2021 17:02:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344623AbhIARDr (ORCPT ); Wed, 1 Sep 2021 13:03:47 -0400 Received: from dnyon.com ([82.223.165.189]:56282 "EHLO dnyon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344453AbhIARDr (ORCPT ); Wed, 1 Sep 2021 13:03:47 -0400 Received: from dnyon.com (55.red-81-39-194.dynamicip.rima-tde.net [81.39.194.55]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dnyon.com (Postfix) with ESMTPSA id 999AD40442; Wed, 1 Sep 2021 17:02:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=dnyon.com; s=mail; t=1630515768; bh=/+spJHj+Ngr9m35GSnygXoafdYZCPeBa4DB05TovR0Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2LGBrWEX0C3n8KEvZH5G11zEQYiiY3u9PCs5Ke7nb6gx6CDWkMC4J0ul9t9p3HCIm fpMJ2/Y1I+F2zSjR9+TGDYH9vfvaLd11Bpq2B5v4V02naa8KKjh8WugkYyh8x6xZpY WjO6DOX4daGBi9/ULAastYAk/azCphtYEW9Uz0eGoZNtkoL49QKKzd9RvXWML+2Zh3 aSZ1BzYLK367fPJCFZKpTzUToe+FvmdvdiEYpfRF8KoqgAtXiAJNlueNZsHi5dQ7Mo eMhFRQckw9kulJARNQjW25I6C/9YxyMj7h7chHXRhYweNK2V3wyg33ltWMVhi75PMv fRvIaavKwVXZQ== From: Alejandro Tafalla To: Andy Shevchenko Cc: Liam Girdwood , Mark Brown , ALSA Development Mailing List , Rob Herring , Jaroslav Kysela , Takashi Iwai , devicetree , Linux Kernel Mailing List Subject: Re: [PATCH v2 1/2] ASoC: max98927: Handle reset gpio when probing i2c Date: Wed, 01 Sep 2021 19:00:59 +0200 Message-ID: <4673573.GXAFRqVoOG@alexpc> In-Reply-To: References: <20210830104426.487246-1-atafalla@dnyon.com> <20210830104426.487246-2-atafalla@dnyon.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On lunes, 30 de agosto de 2021 12:56:23 (CEST) Andy Shevchenko wrote: > It simply as > > return dev_err_probe(&i2c->dev, PTR_ERR(reset_gpio), > "failed to request GPIO reset pin"); > > > + } Alright, I'll make that change. Thank you.