mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 6.12 01/37] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist
@ 2025-04-29 23:50 Sasha Levin
  2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 02/37] cpufreq: Do not enable by default during compile testing Sasha Levin
                   ` (35 more replies)
  0 siblings, 36 replies; 39+ messages in thread
From: Sasha Levin @ 2025-04-29 23:50 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Pengyu Luo, Viresh Kumar, Sasha Levin, rafael, linux-pm

From: Pengyu Luo <mitltlatltl@gmail.com>

[ Upstream commit fc5414a4774e14e51a93499a6adfdc45f2de82e0 ]

SM8650 have already been supported by qcom-cpufreq-hw driver, but
never been added to cpufreq-dt-platdev. This makes noise

[    0.388525] cpufreq-dt cpufreq-dt: failed register driver: -17
[    0.388537] cpufreq-dt cpufreq-dt: probe with driver cpufreq-dt failed with error -17

So adding it to the cpufreq-dt-platdev driver's blocklist to fix it.

Signed-off-by: Pengyu Luo <mitltlatltl@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
index 78ad3221fe077..67bac12d4d55b 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -172,6 +172,7 @@ static const struct of_device_id blocklist[] __initconst = {
 	{ .compatible = "qcom,sm8350", },
 	{ .compatible = "qcom,sm8450", },
 	{ .compatible = "qcom,sm8550", },
+	{ .compatible = "qcom,sm8650", },
 
 	{ .compatible = "st,stih407", },
 	{ .compatible = "st,stih410", },
-- 
2.39.5


^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2025-04-30 12:58 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-29 23:50 [PATCH AUTOSEL 6.12 01/37] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 02/37] cpufreq: Do not enable by default during compile testing Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 03/37] nvmem: rockchip-otp: Move read-offset into variant-data Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 04/37] nvmem: rockchip-otp: add rk3576 variant data Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 05/37] nvmem: core: fix bit offsets of more than one byte Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 06/37] nvmem: core: verify cell's raw_len Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 07/37] nvmem: core: update raw_len if the bit reading is required Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 08/37] nvmem: qfprom: switch to 4-byte aligned reads Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 09/37] scsi: target: iscsi: Fix timeout on deleted connection Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 10/37] scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 11/37] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 12/37] dma/mapping.c: dev_dbg support for dma_addressing_limited Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 13/37] intel_th: avoid using deprecated page->mapping, index fields Sasha Levin
2025-04-29 23:50 ` [PATCH AUTOSEL 6.12 14/37] driver core: introduce device_set_driver() helper Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 15/37] driver core: fix potential NULL pointer dereference in dev_uevent() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 16/37] mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 17/37] dma-mapping: avoid potential unused data compilation warning Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 18/37] cgroup: Fix compilation issue due to cgroup_mutex not being exported Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 19/37] vhost_task: fix vhost_task_create() documentation Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 20/37] vhost-scsi: protect vq->log_used with vq->mutex Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 21/37] scsi: mpi3mr: Add level check to control event logging Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 22/37] net: enetc: refactor bulk flipping of RX buffers to separate function Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 23/37] dma-mapping: Fix warning reported for missing prototype Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 24/37] ima: process_measurement() needlessly takes inode_lock() on MAY_READ Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 25/37] fs/buffer: split locking for pagecache lookups Sasha Levin
2025-04-30  0:48   ` Luis Chamberlain
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 26/37] fs/buffer: introduce sleeping flavors " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 27/37] fs/buffer: use sleeping version of __find_get_block() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 28/37] fs/ocfs2: " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 29/37] fs/jbd2: " Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 30/37] fs/ext4: use sleeping version of sb_find_get_block() Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 31/37] drm/amd/display: Enable urgent latency adjustment on DCN35 Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 32/37] drm/amdgpu: Allow P2P access through XGMI Sasha Levin
2025-04-30 12:58   ` Alex Deucher
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 33/37] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 34/37] block: fix race between set_blocksize and read paths Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 35/37] io_uring: don't duplicate flushing in io_req_post_cqe Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 36/37] bpf: fix possible endless loop in BPF map iteration Sasha Levin
2025-04-29 23:51 ` [PATCH AUTOSEL 6.12 37/37] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®