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 0BB1934C811; Wed, 3 Dec 2025 16:01:58 +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=1764777718; cv=none; b=Q8kkgxW3G29+CJIeqvPyhC53iVZbDAI3xRimWJ9RxlGdKviFK1Lo4vH2BqZovnU+obEtl7nWUoXqHbFQiC1fE9JpSWe2RXFf5Hdax2GoC336gAh2qARs/DVUddYlvEaKq4j4bpX0EvTFLkwQSXHlqDfmZ4xEOOpwtiLyQapI3p0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764777718; c=relaxed/simple; bh=g5VvRV5+OEo+Rk+DLc4ErYnxS0BQ+8dRvufiqFKnGYI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Ktnw7IxKMf2rPMQ+aFqAgibG+y4vuojf1CQUrReA/idil12sA7DqXdgpw2onGOg0LOsL9byY2WEPUPyuhDOJ5Ov+2TyziGgvgW+QWWit6Sjl5qxpT6GC4HA9V7s8JXk75pFHW4IrC/p9rsfdHzZ0/ep3FcYKMbepuyIINRTklKs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cgDdeqyv; 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="cgDdeqyv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 83F37C4CEF5; Wed, 3 Dec 2025 16:01:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764777717; bh=g5VvRV5+OEo+Rk+DLc4ErYnxS0BQ+8dRvufiqFKnGYI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cgDdeqyvX73TICpftJshAUdM+YKqTwcqBjkt+9URFa27023BINWLzgCOwjrJOUBlJ le3ENRsbm2asohelTbUqq15hAo05uWA0WVLVQGHR+4HoYxEW7nb0cdAHAMziruGuAS HEdBKvSNDFLv6E6IA/ZZXW17aWfKi0Tj0MReaIKQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aleksander Jan Bajkowski , Thomas Bogendoerfer , Sasha Levin Subject: [PATCH 5.15 124/392] mips: lantiq: xway: sysctrl: rename stp clock Date: Wed, 3 Dec 2025 16:24:34 +0100 Message-ID: <20251203152418.656783790@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152414.082328008@linuxfoundation.org> References: <20251203152414.082328008@linuxfoundation.org> User-Agent: quilt/0.69 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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Aleksander Jan Bajkowski [ Upstream commit b0d04fe6a633ada2c7bc1b5ddd011cbd85961868 ] Bindig requires a node name matching ‘^gpio@[0-9a-f]+$’. This patch changes the clock name from “stp” to “gpio”. Signed-off-by: Aleksander Jan Bajkowski Signed-off-by: Thomas Bogendoerfer Signed-off-by: Sasha Levin --- arch/mips/lantiq/xway/sysctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/lantiq/xway/sysctrl.c b/arch/mips/lantiq/xway/sysctrl.c index 084f6caba5f23..96a62b42e2971 100644 --- a/arch/mips/lantiq/xway/sysctrl.c +++ b/arch/mips/lantiq/xway/sysctrl.c @@ -463,7 +463,7 @@ void __init ltq_soc_init(void) /* add our generic xway clocks */ clkdev_add_pmu("10000000.fpi", NULL, 0, 0, PMU_FPI); clkdev_add_pmu("1e100a00.gptu", NULL, 1, 0, PMU_GPT); - clkdev_add_pmu("1e100bb0.stp", NULL, 1, 0, PMU_STP); + clkdev_add_pmu("1e100bb0.gpio", NULL, 1, 0, PMU_STP); clkdev_add_pmu("1e100c00.serial", NULL, 0, 0, PMU_ASC1); clkdev_add_pmu("1e104100.dma", NULL, 1, 0, PMU_DMA); clkdev_add_pmu("1e100800.spi", NULL, 1, 0, PMU_SPI); -- 2.51.0