All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: dri-devel@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	jani.nikula@intel.com
Subject: [PATCH 3/7] drm/edid: group struct drm_edid based declarations together
Date: Mon,  8 Apr 2024 11:56:04 +0300	[thread overview]
Message-ID: <57ced070ad4f3a91af66661dcfb6f19687aae3cf.1712565984.git.jani.nikula@intel.com> (raw)
In-Reply-To: <cover.1712565984.git.jani.nikula@intel.com>

Keep the declarations for struct drm_edid based functions together.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 include/drm/drm_edid.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h
index 6eadc4f12c07..19814bb1103c 100644
--- a/include/drm/drm_edid.h
+++ b/include/drm/drm_edid.h
@@ -417,10 +417,6 @@ struct edid *drm_do_get_edid(struct drm_connector *connector,
 	void *data);
 struct edid *drm_get_edid(struct drm_connector *connector,
 			  struct i2c_adapter *adapter);
-const struct drm_edid *drm_edid_read_base_block(struct i2c_adapter *adapter);
-u32 drm_edid_get_panel_id(const struct drm_edid *drm_edid);
-bool drm_edid_match(const struct drm_edid *drm_edid,
-		    const struct drm_edid_ident *ident);
 struct edid *drm_get_edid_switcheroo(struct drm_connector *connector,
 				     struct i2c_adapter *adapter);
 struct edid *drm_edid_duplicate(const struct edid *edid);
@@ -460,11 +456,15 @@ const struct drm_edid *drm_edid_read_ddc(struct drm_connector *connector,
 const struct drm_edid *drm_edid_read_custom(struct drm_connector *connector,
 					    int (*read_block)(void *context, u8 *buf, unsigned int block, size_t len),
 					    void *context);
+const struct drm_edid *drm_edid_read_base_block(struct i2c_adapter *adapter);
 const struct drm_edid *drm_edid_read_switcheroo(struct drm_connector *connector,
 						struct i2c_adapter *adapter);
 int drm_edid_connector_update(struct drm_connector *connector,
 			      const struct drm_edid *edid);
 int drm_edid_connector_add_modes(struct drm_connector *connector);
 bool drm_edid_is_digital(const struct drm_edid *drm_edid);
+u32 drm_edid_get_panel_id(const struct drm_edid *drm_edid);
+bool drm_edid_match(const struct drm_edid *drm_edid,
+		    const struct drm_edid_ident *ident);
 
 #endif /* __DRM_EDID_H__ */
-- 
2.39.2


  parent reply	other threads:[~2024-04-08  8:56 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-08  8:56 [PATCH 0/7] drm/edid: cleanups, resend Jani Nikula
2024-04-08  8:56 ` [PATCH 1/7] drm/displayid: move drm_displayid.h to drm_displayd_internal.h Jani Nikula
2024-04-08  8:56 ` [PATCH 2/7] drm/edid: move all internal declarations to drm_crtc_internal.h Jani Nikula
2024-04-08  8:56 ` Jani Nikula [this message]
2024-04-08  8:56 ` [PATCH 4/7] drm/edid: rename drm_find_edid_extension() to drm_edid_find_extension() Jani Nikula
2024-04-08  8:56 ` [PATCH 5/7] drm/edid: avoid drm_edid_find_extension() internally Jani Nikula
2024-04-08  8:56 ` [PATCH 6/7] drm/edid: make drm_edid_are_equal() static Jani Nikula
2024-04-08  8:56 ` [PATCH 7/7] drm/edid: make drm_edid_are_equal() more convenient for its single user Jani Nikula
2024-04-08 13:28 ` ✓ CI.Patch_applied: success for drm/edid: cleanups, resend Patchwork
2024-04-08 13:29 ` ✗ CI.checkpatch: warning " Patchwork
2024-04-08 13:30 ` ✓ CI.KUnit: success " Patchwork
2024-04-08 13:41 ` ✓ CI.Build: " Patchwork
2024-04-08 13:44 ` ✓ CI.Hooks: " Patchwork
2024-04-08 13:45 ` ✗ CI.checksparse: warning " Patchwork
2024-04-08 14:06 ` ✓ CI.BAT: success " Patchwork
2024-04-08 15:14 ` ✗ CI.FULL: failure " Patchwork
2024-04-08 18:12 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-04-08 18:12 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-04-08 18:17 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-10  2:11 ` ✗ Fi.CI.IGT: failure " Patchwork

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=57ced070ad4f3a91af66661dcfb6f19687aae3cf.1712565984.git.jani.nikula@intel.com \
    --to=jani.nikula@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    /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.