All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxime Ripard <mripard@kernel.org>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	 Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>,
	 Daniel Vetter <daniel@ffwll.ch>
Cc: Jani Nikula <jani.nikula@linux.intel.com>,
	 dri-devel@lists.freedesktop.org,
	Maxime Ripard <mripard@kernel.org>
Subject: [PATCH 05/12] drm/display: Reorder Kconfig symbols
Date: Mon, 25 Mar 2024 13:52:07 +0100	[thread overview]
Message-ID: <20240325-kms-kconfig-helpers-v1-5-bfec6949d9c3@kernel.org> (raw)
In-Reply-To: <20240325-kms-kconfig-helpers-v1-0-bfec6949d9c3@kernel.org>

The display kconfig helpers are not organized in any particular order,
so let's move them around to create an alphabetical order.

Signed-off-by: Maxime Ripard <mripard@kernel.org>
---
 drivers/gpu/drm/display/Kconfig | 52 ++++++++++++++++++++---------------------
 1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/drivers/gpu/drm/display/Kconfig b/drivers/gpu/drm/display/Kconfig
index 35cb68db0bfd..864a6488bfdf 100644
--- a/drivers/gpu/drm/display/Kconfig
+++ b/drivers/gpu/drm/display/Kconfig
@@ -1,18 +1,39 @@
 # SPDX-License-Identifier: MIT
 
-config DRM_DISPLAY_DP_AUX_BUS
-	tristate
-	depends on DRM
-	depends on OF || COMPILE_TEST
-
 config DRM_DISPLAY_HELPER
 	tristate
 	depends on DRM
 	help
 	  DRM helpers for display adapters.
 
+config DRM_DISPLAY_DP_AUX_BUS
+	tristate
+	depends on DRM
+	depends on OF || COMPILE_TEST
+
+config DRM_DISPLAY_DP_AUX_CEC
+	bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
+	depends on DRM && DRM_DISPLAY_HELPER
+	select DRM_DISPLAY_DP_HELPER
+	select CEC_CORE
+	help
+	  Choose this option if you want to enable HDMI CEC support for
+	  DisplayPort/USB-C to HDMI adapters.
+
+	  Note: not all adapters support this feature, and even for those
+	  that do support this they often do not hook up the CEC pin.
+
+config DRM_DISPLAY_DP_AUX_CHARDEV
+	bool "DRM DP AUX Interface"
+	depends on DRM && DRM_DISPLAY_HELPER
+	select DRM_DISPLAY_DP_HELPER
+	help
+	  Choose this option to enable a /dev/drm_dp_auxN node that allows to
+	  read and write values to arbitrary DPCD registers on the DP aux
+	  channel.
+
 config DRM_DISPLAY_DP_HELPER
 	bool
 	depends on DRM_DISPLAY_HELPER
 	help
 	  DRM display helpers for DisplayPort.
@@ -47,26 +68,5 @@ config DRM_DISPLAY_HDCP_HELPER
 config DRM_DISPLAY_HDMI_HELPER
 	bool
 	depends on DRM_DISPLAY_HELPER
 	help
 	  DRM display helpers for HDMI.
-
-config DRM_DISPLAY_DP_AUX_CHARDEV
-	bool "DRM DP AUX Interface"
-	depends on DRM && DRM_DISPLAY_HELPER
-	select DRM_DISPLAY_DP_HELPER
-	help
-	  Choose this option to enable a /dev/drm_dp_auxN node that allows to
-	  read and write values to arbitrary DPCD registers on the DP aux
-	  channel.
-
-config DRM_DISPLAY_DP_AUX_CEC
-	bool "Enable DisplayPort CEC-Tunneling-over-AUX HDMI support"
-	depends on DRM && DRM_DISPLAY_HELPER
-	select DRM_DISPLAY_DP_HELPER
-	select CEC_CORE
-	help
-	  Choose this option if you want to enable HDMI CEC support for
-	  DisplayPort/USB-C to HDMI adapters.
-
-	  Note: not all adapters support this feature, and even for those
-	  that do support this they often do not hook up the CEC pin.

-- 
2.44.0


  parent reply	other threads:[~2024-03-25 12:52 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-25 12:52 [PATCH 00/12] drm/display: Convert helpers Kconfig symbols to depends on Maxime Ripard
2024-03-25 12:52 ` [PATCH 01/12] drm/display: Make DisplayPort AUX bus Kconfig name consistent Maxime Ripard
2024-03-25 12:52 ` [PATCH 02/12] drm/display: Make DisplayPort tunnel debug " Maxime Ripard
2024-03-25 12:52 ` [PATCH 03/12] drm/display: Make DisplayPort AUX Chardev " Maxime Ripard
2024-03-25 17:48   ` Lucas De Marchi
2024-03-25 12:52 ` [PATCH 04/12] drm/display: Make DisplayPort CEC-over-AUX " Maxime Ripard
2024-03-25 12:52 ` Maxime Ripard [this message]
2024-03-25 12:52 ` [PATCH 06/12] drm/display: Make all helpers visible and switch to depends on Maxime Ripard
2024-03-25 12:52 ` [PATCH 07/12] drm: Switch DRM_DISPLAY_HELPER " Maxime Ripard
2024-03-26 13:20   ` kernel test robot
2024-03-25 12:52 ` [PATCH 08/12] drm: Switch DRM_DISPLAY_DP_AUX_BUS " Maxime Ripard
2024-03-25 12:52 ` [PATCH 09/12] drm: Switch DRM_DISPLAY_DP_HELPER " Maxime Ripard
2024-03-25 12:52 ` [PATCH 10/12] drm: Switch DRM_DISPLAY_HDCP_HELPER " Maxime Ripard
2024-03-25 12:52 ` [PATCH 11/12] drm: Switch DRM_DISPLAY_HDMI_HELPER " Maxime Ripard
2024-03-25 12:52 ` [PATCH 12/12] drm/bridge: it6505: Remove useless select Maxime Ripard
2024-03-25 14:13 ` [PATCH 00/12] drm/display: Convert helpers Kconfig symbols to depends on Jani Nikula
2024-03-25 14:56   ` Maxime Ripard
2024-03-26 11:11     ` Jani Nikula
2024-03-26 11:50       ` Maxime Ripard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240325-kms-kconfig-helpers-v1-5-bfec6949d9c3@kernel.org \
    --to=mripard@kernel.org \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=tzimmermann@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.