From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 9BED014E2E2; Thu, 17 Jul 2025 14:33:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752762836; cv=none; b=sfkSIwbOh29V3cn3A4M/LO90cWynxr68az3O5uBV4ohAs+rqqhVKXdrh5o7JA9Mo0Mt9tErFCQ5wVHqRaldpGFh30VzUbkd2tWu3bYk1keoUBWkFYlpyRsKz9ndh+lpb/aeMyrBezve66g6KyGkvBBIdzFmKjtxm/rAMBPaE/10= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752762836; c=relaxed/simple; bh=gaNKnbXy2N6L+MzrJHDhEHpoPAGcjo+wDyiZyZhSWGk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=eBf3ANmQIQnZlJqKVRd3biaFigrQkBnS/5F37rVcLpt/om9I8SzLRkLO9S0OukDoHpqMmhqe5tlJ4gt8txO4EYWxM3hbjE7v+FCTX1e2R21VJgrpQJAtg7rOeOXVvnCnGpSl04dOHyWIvyDvQHM92/N/Y2Qj3k9ipoy9kkuKlfA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=fOzab5mz; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="fOzab5mz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7770AC4CEE3; Thu, 17 Jul 2025 14:33:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1752762836; bh=gaNKnbXy2N6L+MzrJHDhEHpoPAGcjo+wDyiZyZhSWGk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=fOzab5mzVnYsSsKwUADGJUzhUvdyO9FUpLNAXIH/zmFbRbFq4dAhu2S0rExutKCkg YKC5EpwVZ0MFwhtA0i27mhjDFzdr9l67GNemVsP7SnmCWEiZZ/VvGPT0Nhyf+xoHCb wI7rDD/Qm5uqRl56rLqtsYyEbx2W4EPeB8SkilUk= Date: Thu, 17 Jul 2025 16:33:49 +0200 From: Greg Kroah-Hartman To: Bartosz Golaszewski Cc: Romain Gantois , Arnd Bergmann , Linus Walleij , linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org, Bartosz Golaszewski Subject: Re: [PATCH 1/2] misc: ti-fpc202: remove unneeded direction check Message-ID: <2025071739-risotto-peddling-e185@gregkh> References: <20250717130357.53491-1-brgl@bgdev.pl> Precedence: bulk X-Mailing-List: linux-gpio@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: <20250717130357.53491-1-brgl@bgdev.pl> On Thu, Jul 17, 2025 at 03:03:55PM +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski > > As of commit 92ac7de3175e3 ("gpiolib: don't allow setting values on input > lines"), the GPIO core makes sure values cannot be set on input lines. > Remove the unnecessary check. > > Signed-off-by: Bartosz Golaszewski Acked-by: Greg Kroah-Hartman