From nobody Mon Oct 6 17:09:07 2025 Received: from srv01.abscue.de (abscue.de [89.58.28.240]) (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 7CD6F226D1E; Sat, 19 Jul 2025 12:11:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=89.58.28.240 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752927101; cv=none; b=mPhORX2xSAeDRhB988Qm0uvzASra3dfAZg6c0eR5ng/lDrXwrjPl9J4X6APnPYuCZI+K7Xp4emxgaHLJmlYjNbifn4zhV2UkzWAVomLACfxLkmKhdI0wpGHozXFHtng7Y5JysCpGjOCTr/DinbghnDa0V67Ntm8PRu07uCzY9jk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752927101; c=relaxed/simple; bh=CJ32DjOptoB7KvxuPypA+ror4zNwEHUflLxk4bWDq+s=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=ANRcwOnP1BcOpKiEFusb5Tc221URM0mQovtENnkp84+thOicgGHDbWe5a6xTcPYjoNOGR9NCXHv49d492yRIqDNC3+e6Js7RFK6Lm3UMzMtqCYR96sUIv+Pz2QFsN/cetUD6nzQHwUeiVoFUe+Q8Ese7rJ6bRbTSCh7NlAJiVEs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=abscue.de; spf=pass smtp.mailfrom=abscue.de; arc=none smtp.client-ip=89.58.28.240 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=abscue.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=abscue.de Received: from srv01.abscue.de (localhost [127.0.0.1]) by spamfilter.srv.local (Postfix) with ESMTP id D5E5B1C233E; Sat, 19 Jul 2025 14:11:35 +0200 (CEST) X-Spam-Level: Received: from fluffy-mammal.metal.fwg-cag.de (unknown [IPv6:2001:9e8:cdf7:4000:ceae:3606:9020:cd4f]) by srv01.abscue.de (Postfix) with ESMTPSA id 42A791C2341; Sat, 19 Jul 2025 14:11:35 +0200 (CEST) From: =?utf-8?q?Otto_Pfl=C3=BCger?= Date: Sat, 19 Jul 2025 14:09:48 +0200 Subject: [PATCH 12/12] drm: sprd: select REGMAP in Kconfig Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20250719-ums9230-drm-v1-12-e4344a05eb3d@abscue.de> References: <20250719-ums9230-drm-v1-0-e4344a05eb3d@abscue.de> In-Reply-To: <20250719-ums9230-drm-v1-0-e4344a05eb3d@abscue.de> To: David Airlie , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Orson Zhai , Baolin Wang , Chunyan Zhang , Kevin Tang Cc: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, =?utf-8?q?Otto_Pfl=C3=BCger?= X-Mailer: b4 0.14.2 When compile-testing this driver with all other drivers disabled, sprd_dsi.c fails to compile due to a missing definition of struct regmap_bus. Ensure that this does not happen by declaring the compile-time dependency on regmap in Kconfig. Signed-off-by: Otto Pfl=C3=BCger --- drivers/gpu/drm/sprd/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/sprd/Kconfig b/drivers/gpu/drm/sprd/Kconfig index 1afcdbf6f0ee3304f2297835241c9bb10d422154..828384d42c5aac4bf194558f22d= 9a77f7c693572 100644 --- a/drivers/gpu/drm/sprd/Kconfig +++ b/drivers/gpu/drm/sprd/Kconfig @@ -7,6 +7,7 @@ config DRM_SPRD select DRM_GEM_DMA_HELPER select DRM_KMS_HELPER select DRM_MIPI_DSI + select REGMAP select VIDEOMODE_HELPERS help Choose this option if you have a Unisoc chipset. --=20 2.50.0