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 007161A5A4 for ; Mon, 9 Oct 2023 13:22:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="xdNHyE0S" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 738E6C433C9; Mon, 9 Oct 2023 13:22:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696857747; bh=Lb9xHe7HstY3IR6st71hGlrJm5jXG7wDCvPkRXiuKQU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xdNHyE0SjNjpq6u94BExWqwxuSP3rcAC2GI1EZ5fNegqLKZ9KMsoS9IYIeW2Yjmx2 eqF+9eoWvAquqM2Vl+tOG9AGOnMRQ1d8a4mLbexUlPDssEPGNDFnMbJsskY+q6H3EF IF+Kwt6Ld8vczlxMMCG5UOjCJ5db8cYbcqds/3dY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Duje=20Mihanovi=C4=87?= , Andy Shevchenko , Bartosz Golaszewski Subject: [PATCH 6.1 144/162] gpio: pxa: disable pinctrl calls for MMP_GPIO Date: Mon, 9 Oct 2023 15:02:05 +0200 Message-ID: <20231009130126.882022721@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231009130122.946357448@linuxfoundation.org> References: <20231009130122.946357448@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Duje Mihanović commit f0575116507b981e6a810e78ce3c9040395b958b upstream. Similarly to PXA3xx and MMP2, pinctrl-single isn't capable of setting pin direction on MMP either. Fixes: a770d946371e ("gpio: pxa: add pin control gpio direction and request") Signed-off-by: Duje Mihanović Reviewed-by: Andy Shevchenko Signed-off-by: Bartosz Golaszewski Signed-off-by: Greg Kroah-Hartman --- drivers/gpio/gpio-pxa.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/gpio/gpio-pxa.c +++ b/drivers/gpio/gpio-pxa.c @@ -243,6 +243,7 @@ static bool pxa_gpio_has_pinctrl(void) switch (gpio_type) { case PXA3XX_GPIO: case MMP2_GPIO: + case MMP_GPIO: return false; default: