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 1B34855778; Tue, 26 Dec 2023 00:21:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="cjrxjFeu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F4166C433CA; Tue, 26 Dec 2023 00:21:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1703550115; bh=qetpHDRFWfYBuGHOtnC7oXohZ9dUj+2MjaGVCAW4Ctg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cjrxjFeudnpayvLEnitM4DxoMsYdWTlfLdOCw+l3XUo1kM/MVFz3k+42XP5DP9wHK CO1fouPvZdNxQffA+o1opOx/gQjr/A0gCacN4kHJbCr/35Ioj8YMqs1lupmzmrTDta CuqBMxHQbdmwUNwKhPV+ZHoZxyKeBjtrhBsnLo7lAgxH5JpFxtGBka0NuzdI4Ksqop t7JXCTakRZ/tbKQaH99pB/327Q+lZQo3+D1zfDIwTQxr+z3qQ3yE/2aGhxT9c4Hf+y XphMQaFVoodI15S8DU1uTOAIaay3SgE+VBGDgSCqsQGay2RjwNLCqTlJmdGedTP64k xikc9I5FNxHUQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Patrick Rudolph , Linus Walleij , Sasha Levin , linux-gpio@vger.kernel.org Subject: [PATCH AUTOSEL 6.6 35/39] pinctrl: cy8c95x0: Fix typo Date: Mon, 25 Dec 2023 19:19:25 -0500 Message-ID: <20231226002021.4776-35-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20231226002021.4776-1-sashal@kernel.org> References: <20231226002021.4776-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-gpio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.6.8 Content-Transfer-Encoding: 8bit From: Patrick Rudolph [ Upstream commit 47b1fa48116238208c1b1198dba10f56fc1b6eb2 ] Fix typo to make pinctrl-cy8c95x compile again. Signed-off-by: Patrick Rudolph Link: https://lore.kernel.org/r/20231219125120.4028862-1-patrick.rudolph@9elements.com Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/pinctrl-cy8c95x0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-cy8c95x0.c b/drivers/pinctrl/pinctrl-cy8c95x0.c index 58ca6fac7849a..993b30ebc6841 100644 --- a/drivers/pinctrl/pinctrl-cy8c95x0.c +++ b/drivers/pinctrl/pinctrl-cy8c95x0.c @@ -821,7 +821,7 @@ static int cy8c95x0_setup_gpiochip(struct cy8c95x0_pinctrl *chip) gc->get_direction = cy8c95x0_gpio_get_direction; gc->get_multiple = cy8c95x0_gpio_get_multiple; gc->set_multiple = cy8c95x0_gpio_set_multiple; - gc->set_config = gpiochip_generic_config, + gc->set_config = gpiochip_generic_config; gc->can_sleep = true; gc->add_pin_ranges = cy8c95x0_add_pin_ranges; -- 2.43.0