Skip to content

Commit

Permalink
drm/edid: prefer forward declarations over includes in drm_edid.h
Browse files Browse the repository at this point in the history
There's no need to include either linux/hdmi.h or drm/drm_mode.h. They
can be removed by using forward declarations.

While at it, group the forward declarations together, and remove the
unnecessary ones.

Signed-off-by: Jani Nikula <[email protected]>
Reviewed-by: Thomas Zimmermann <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
jnikula committed Jan 5, 2024
1 parent 056a996 commit e130ba2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions include/drm/drm_edid.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,14 @@
#define __DRM_EDID_H__

#include <linux/types.h>
#include <linux/hdmi.h>
#include <drm/drm_mode.h>

enum hdmi_quantization_range;
struct drm_connector;
struct drm_device;
struct drm_display_mode;
struct drm_edid;
struct hdmi_avi_infoframe;
struct hdmi_vendor_infoframe;
struct i2c_adapter;

#define EDID_LENGTH 128
Expand Down Expand Up @@ -319,11 +322,6 @@ struct cea_sad {
u8 byte2; /* meaning depends on format */
};

struct drm_encoder;
struct drm_connector;
struct drm_connector_state;
struct drm_display_mode;

int drm_edid_to_sad(const struct edid *edid, struct cea_sad **sads);
int drm_edid_to_speaker_allocation(const struct edid *edid, u8 **sadb);
int drm_av_sync_delay(struct drm_connector *connector,
Expand Down

0 comments on commit e130ba2

Please sign in to comment.