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 519B71F8915; Tue, 3 Dec 2024 15:13:51 +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=1733238831; cv=none; b=ZjvYKHBHyjlmbeNq4AIhBJ237DZVDz3YLc4xo2Sw8hnb/gFZXUMbFwAHB7w9QPB6Fd0hmR9yVHtQhluQZChRci5xr9gbPQm9+PtGqXbCX6M34yGRnQ7vzlW6tfv6RGUwzFleM8TRuWXjdTYHrWOt9kWi7jbYepSf9gbOSvWhTAU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733238831; c=relaxed/simple; bh=VsYuicowWp5saApiH9Ln0GsEeRFekAp8PsIgsvxaH1M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iRxwIxAeyx8Y40hbjmMuifWzYJYxJdPXJjKHTToXKn3KfL3rOKEjn0CkHwDDd8GL+Z48/Nw/Qn4iy+bt+aVnhiY2uE1XSL/sFZTnVurweSxjhzyWBzXFTQHEbAl2rmb3egmi4iLPVP2VA95mJglzoXWHwux9xQhlmbtL2B7o0j0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pYfr0wDd; 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="pYfr0wDd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CE3B5C4CECF; Tue, 3 Dec 2024 15:13:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733238831; bh=VsYuicowWp5saApiH9Ln0GsEeRFekAp8PsIgsvxaH1M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pYfr0wDdqVHeR4A8eZ5EqDeC9ozidTHHR/VNth3TcD9QRdCzjY9spJpOUbarPd68s FOyc3kqwRQJh9VcdTrlMh+RAKPUW6sPNiO0DOXqlBvQrDwEV+03TEzvsKOQ/4XMMqQ ul8aThwfHk0rhSj3LypbnctJX64NsWXlwi6sSCEk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bartosz Golaszewski , Linus Walleij , Sasha Levin Subject: [PATCH 6.11 380/817] pinctrl: zynqmp: drop excess struct member description Date: Tue, 3 Dec 2024 15:39:12 +0100 Message-ID: <20241203144010.677042988@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241203143955.605130076@linuxfoundation.org> References: <20241203143955.605130076@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 6.11-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bartosz Golaszewski [ Upstream commit 2a85fc7044987d751f27d7f1e4423eebbcecc2c6 ] The 'node' member has never been part of this structure so drop its description. Fixes: 8b242ca700f8 ("pinctrl: Add Xilinx ZynqMP pinctrl driver support") Signed-off-by: Bartosz Golaszewski Link: https://lore.kernel.org/20241010080432.7781-1-brgl@bgdev.pl Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/pinctrl-zynqmp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-zynqmp.c b/drivers/pinctrl/pinctrl-zynqmp.c index 3c6d56fdb8c96..93454d2a26bcc 100644 --- a/drivers/pinctrl/pinctrl-zynqmp.c +++ b/drivers/pinctrl/pinctrl-zynqmp.c @@ -49,7 +49,6 @@ * @name: Name of the pin mux function * @groups: List of pin groups for this function * @ngroups: Number of entries in @groups - * @node: Firmware node matching with the function * * This structure holds information about pin control function * and function group names supporting that function. -- 2.43.0