From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A8E1D2BF000; Mon, 16 Jun 2025 13:49:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=156.67.10.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750081779; cv=none; b=spcFaaENG1qcpIxDIscJKLo2bn47tKu94q0moZ0XTEEY1hu9qtTX19ykVCCKbIybYz0Lcq/uUbYjuuYWU85SFBZ5ttPbPq0Go+oyAdsXyYYgTVnOZgJUpZNRmDcOyTquHOQYorhkZt/l+zID5VcduG9tqw9T7N89s0iqpy5YTe4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750081779; c=relaxed/simple; bh=QZE6l6z3YvrxDKGUDGWYWMFBToEiLyz4ob+DlQ6xjNs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=fXE2H9qBMWlvQs7lSAhuPkx3DlLlrV5kEHHrFwrloyz2Z/EkNnFWQhh8wLQSFdyw2f+jcmYz1TcdrJxi90CGmj58U/pJQC/HDel5TqE22YgGd15UQ6XIrMpmWELcJlyppIEc+mTkdTrbLNLvPWBuBKAkNj9EILXZS1e9mkJd+IE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch; spf=pass smtp.mailfrom=lunn.ch; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b=PoNcfPW1; arc=none smtp.client-ip=156.67.10.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lunn.ch Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="PoNcfPW1" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=MRwnUrIu3Cw+lFxeGdUnR2HtFtBRA0hnsQ8yIVnUPaU=; b=PoNcfPW12mJc8EPXtxPGbBJPrk bezOVG6Imvx2XrKypatla5+ELKtyLedTUhgsCPYiMmHRs+Sh1qucyGAfekQXq4vjIM1uijNp8LZ0i WptmiEXU9El52bboQvdLS9PwELTgqhHLX3UTmJV+kR0FuEyTFaZGoUyGDvFAFdEDR5PA=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1uRACx-00G34c-0p; Mon, 16 Jun 2025 15:49:07 +0200 Date: Mon, 16 Jun 2025 15:49:06 +0200 From: Andrew Lunn To: Bartosz Golaszewski Cc: Vladimir Oltean , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Linus Walleij , "Chester A. Unal" , Daniel Golle , DENG Qingfang , Sean Wang , Matthias Brugger , AngeloGioacchino Del Regno , Marc Kleine-Budde , Vincent Mailhol , Heiner Kallweit , Russell King , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-can@vger.kernel.org, linux-arm-msm@vger.kernel.org, Bartosz Golaszewski Subject: Re: [PATCH v2 5/5] net: phy: qca807x: use new GPIO line value setter callbacks Message-ID: <9db357b2-3f78-4ec3-9bcf-edaf2f9b3a25@lunn.ch> References: <20250616-gpiochip-set-rv-net-v2-0-cae0b182a552@linaro.org> <20250616-gpiochip-set-rv-net-v2-5-cae0b182a552@linaro.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250616-gpiochip-set-rv-net-v2-5-cae0b182a552@linaro.org> On Mon, Jun 16, 2025 at 09:24:08AM +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski > > struct gpio_chip now has callbacks for setting line values that return > an integer, allowing to indicate failures. Convert the driver to using > them. > > Signed-off-by: Bartosz Golaszewski Reviewed-by: Andrew Lunn Andrew