Commit 17edb8e1 authored by Jani Nikula's avatar Jani Nikula

drm/edid: drop kernel-doc for static functions

Drop the kernel-doc for static functions, it's excessive, but retain the
info in plain comments.
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Reviewed-by: default avatarSimon Ser <contact@emersion.fr>
Link: https://patchwork.freedesktop.org/patch/msgid/20220426091913.1339941-2-jani.nikula@intel.com
parent 5d96fc9c
...@@ -2384,13 +2384,9 @@ static u32 edid_get_quirks(const struct edid *edid) ...@@ -2384,13 +2384,9 @@ static u32 edid_get_quirks(const struct edid *edid)
#define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay) #define MODE_SIZE(m) ((m)->hdisplay * (m)->vdisplay)
#define MODE_REFRESH_DIFF(c,t) (abs((c) - (t))) #define MODE_REFRESH_DIFF(c,t) (abs((c) - (t)))
/** /*
* edid_fixup_preferred - set preferred modes based on quirk list * Walk the mode list for connector, clearing the preferred status on existing
* @connector: has mode list to fix up * modes and setting it anew for the right mode ala quirks.
* @quirks: quirks list
*
* Walk the mode list for @connector, clearing the preferred status
* on existing modes and setting it anew for the right mode ala @quirks.
*/ */
static void edid_fixup_preferred(struct drm_connector *connector, static void edid_fixup_preferred(struct drm_connector *connector,
u32 quirks) u32 quirks)
...@@ -2659,10 +2655,7 @@ drm_gtf2_2j(const struct edid *edid) ...@@ -2659,10 +2655,7 @@ drm_gtf2_2j(const struct edid *edid)
return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.j : 0; return descriptor ? descriptor->data.other_data.data.range.formula.gtf2.j : 0;
} }
/** /* Get standard timing level (CVT/GTF/DMT). */
* standard_timing_level - get std. timing level(CVT/GTF/DMT)
* @edid: EDID block to scan
*/
static int standard_timing_level(const struct edid *edid) static int standard_timing_level(const struct edid *edid)
{ {
if (edid->revision >= 2) { if (edid->revision >= 2) {
...@@ -2696,12 +2689,7 @@ static int drm_mode_hsync(const struct drm_display_mode *mode) ...@@ -2696,12 +2689,7 @@ static int drm_mode_hsync(const struct drm_display_mode *mode)
return DIV_ROUND_CLOSEST(mode->clock, mode->htotal); return DIV_ROUND_CLOSEST(mode->clock, mode->htotal);
} }
/** /*
* drm_mode_std - convert standard mode info (width, height, refresh) into mode
* @connector: connector of for the EDID block
* @edid: EDID block to scan
* @t: standard timing params
*
* Take the standard timing params (in this case width, aspect, and refresh) * Take the standard timing params (in this case width, aspect, and refresh)
* and convert them into a real mode using CVT/GTF/DMT. * and convert them into a real mode using CVT/GTF/DMT.
*/ */
...@@ -2857,15 +2845,10 @@ drm_mode_do_interlace_quirk(struct drm_display_mode *mode, ...@@ -2857,15 +2845,10 @@ drm_mode_do_interlace_quirk(struct drm_display_mode *mode,
mode->flags |= DRM_MODE_FLAG_INTERLACE; mode->flags |= DRM_MODE_FLAG_INTERLACE;
} }
/** /*
* drm_mode_detailed - create a new mode from an EDID detailed timing section * Create a new mode from an EDID detailed timing section. An EDID detailed
* @dev: DRM device (needed to create new mode) * timing block contains enough info for us to create and return a new struct
* @edid: EDID block * drm_display_mode.
* @timing: EDID detailed timing info
* @quirks: quirks to apply
*
* An EDID detailed timing block contains enough info for us to create and
* return a new struct drm_display_mode.
*/ */
static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev, static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
const struct edid *edid, const struct edid *edid,
...@@ -3247,13 +3230,10 @@ do_established_modes(const struct detailed_timing *timing, void *c) ...@@ -3247,13 +3230,10 @@ do_established_modes(const struct detailed_timing *timing, void *c)
closure->modes += drm_est3_modes(closure->connector, timing); closure->modes += drm_est3_modes(closure->connector, timing);
} }
/** /*
* add_established_modes - get est. modes from EDID and add them * Get established modes from EDID and add them. Each EDID block contains a
* @connector: connector to add mode(s) to * bitmap of the supported "established modes" list (defined above). Tease them
* @edid: EDID block to scan * out and add them to the global modes list.
*
* Each EDID block contains a bitmap of the supported "established modes" list
* (defined above). Tease them out and add them to the global modes list.
*/ */
static int static int
add_established_modes(struct drm_connector *connector, const struct edid *edid) add_established_modes(struct drm_connector *connector, const struct edid *edid)
...@@ -3311,13 +3291,10 @@ do_standard_modes(const struct detailed_timing *timing, void *c) ...@@ -3311,13 +3291,10 @@ do_standard_modes(const struct detailed_timing *timing, void *c)
} }
} }
/** /*
* add_standard_modes - get std. modes from EDID and add them * Get standard modes from EDID and add them. Standard modes can be calculated
* @connector: connector to add mode(s) to * using the appropriate standard (DMT, GTF, or CVT). Grab them from EDID and
* @edid: EDID block to scan * add them to the list.
*
* Standard modes can be calculated using the appropriate standard (DMT,
* GTF or CVT. Grab them from @edid and add them to the list.
*/ */
static int static int
add_standard_modes(struct drm_connector *connector, const struct edid *edid) add_standard_modes(struct drm_connector *connector, const struct edid *edid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment