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 EFC4334550; Tue, 26 Dec 2023 00:23:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EfOraWMy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BBCBFC433CA; Tue, 26 Dec 2023 00:23:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1703550235; bh=yQw0rEL7VXpmkhbUBn3Byqjp7uNazpvMWCS0WLabl5U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EfOraWMy1GEtyttzQFNfT2oGEqqpT9A0vk3aOh5Ztf6tlqkJeEWfAbsx+ehpvhAmA AQi+loSU+08xxKfbntSlFf0FwMgLkxMh00YKuRW9QYIvJv0SkvNyGB4CLCaAUEiwlW rHduOYmF/SVGFUCMPNfyL8+HDQcwXuYYVfr2pzdtAbfoIo0Ev0JZ4aeawWl3kfsZLI izAEjzChL/wF9fqLcKI6MjW2wzzUTqGW+GgIfyb9eCsZ9iss0TUHWsqOgQkp961GGx VCWOEq+IFnHjUUjgnrNCKiTcGT/WpKR5VmGylWGmUk+zqKpn3qI5EDQWAIr4uSjCWV yiw2FDapXQbYQ== 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.1 21/24] pinctrl: cy8c95x0: Fix typo Date: Mon, 25 Dec 2023 19:22:14 -0500 Message-ID: <20231226002255.5730-21-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20231226002255.5730-1-sashal@kernel.org> References: <20231226002255.5730-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@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.1.69 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 68509a2301b8f..99c3fe4ca518e 100644 --- a/drivers/pinctrl/pinctrl-cy8c95x0.c +++ b/drivers/pinctrl/pinctrl-cy8c95x0.c @@ -857,7 +857,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