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 772641487DE; Tue, 23 Jan 2024 01:07:57 +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=1705972078; cv=none; b=jVP0C5XOsrLwAE/B1v2J1jW7lh7SPIbXVSk9jSOmmK7r87ySMEmiROQixqiWTKCZ9R+jCJjiKS4u+Xnh0vJEe17vtoheMoIINJz8EDE75y2mwdQ4xbCYQVBIEroHWtGMgDYia5MyjQbf6KXOXZXRBL3FfeKDS2tJ3T7k53Yq5go= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705972078; c=relaxed/simple; bh=vsCEfh/p7YkwWUN07Bhe4iVAyqRcTQyKQSi/+eHXJEw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SpMVPWyHdQ9a7aiuBzygvEB3Z4WgasEXrGDdQkMwimNp+JQP2XMyprpnxQViddHzTqxtS98rQivkxNLL9vU0bQvJ/jutIqcyhZVfp0yD5wwbASHZNiHsDFRu/nkEpsfuGzxL6GqDZaZzRjEouS+B7y0RxIYN+iRkZa1fkCCylVw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=mTJ/jk7A; 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="mTJ/jk7A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A44BEC433F1; Tue, 23 Jan 2024 01:07:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705972077; bh=vsCEfh/p7YkwWUN07Bhe4iVAyqRcTQyKQSi/+eHXJEw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mTJ/jk7AQZApuW8OSOgTGTXSNnU4FASl6UPdaRf8C5d+hXKXyV+azjYfCcrepJdOz OQ5NEMp0cqOIxlr+tQy9pTIsLe2HYobXmxi9+RqiQPN5ADUpOcpz6rFEhs7SfWtNOA 7Bgk7oT+9jZL9yhb8LVrIiw61lN5AROZW5BTPGy0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Linus Walleij , Charles Keepax , Sasha Levin Subject: [PATCH 5.15 002/374] pinctrl: lochnagar: Dont build on MIPS Date: Mon, 22 Jan 2024 15:54:18 -0800 Message-ID: <20240122235744.697234765@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235744.598274724@linuxfoundation.org> References: <20240122235744.598274724@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-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Charles Keepax [ Upstream commit 6588732445ff19f6183f0fa72ddedf67e5a5be32 ] MIPS appears to define a RST symbol at a high level, which clashes with some register naming in the driver. Since there is currently no case for running this driver on MIPS devices simply cut off the build of this driver on MIPS. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202311071303.JJMAOjy4-lkp@intel.com/ Suggested-by: Linus Walleij Signed-off-by: Charles Keepax Link: https://lore.kernel.org/r/20231115162853.1891940-1-ckeepax@opensource.cirrus.com Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/cirrus/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/pinctrl/cirrus/Kconfig b/drivers/pinctrl/cirrus/Kconfig index 530426a74f75..b3cea8d56c4f 100644 --- a/drivers/pinctrl/cirrus/Kconfig +++ b/drivers/pinctrl/cirrus/Kconfig @@ -1,7 +1,8 @@ # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_LOCHNAGAR tristate "Cirrus Logic Lochnagar pinctrl driver" - depends on MFD_LOCHNAGAR + # Avoid clash caused by MIPS defining RST, which is used in the driver + depends on MFD_LOCHNAGAR && !MIPS select GPIOLIB select PINMUX select PINCONF -- 2.43.0