Commit 1e66f04c authored by Kieran Bingham's avatar Kieran Bingham Committed by Douglas Anderson

gpu: drm: panel-edp: Fix edp_panel_entry documentation

The edp_panel_entry members 'delay' and 'name' are documented, but
without the correct syntax for kernel doc.

This generates the following warnings:

drivers/gpu/drm/panel/panel-edp.c:204: warning: Function parameter or member 'delay' not described in 'edp_panel_entry'
drivers/gpu/drm/panel/panel-edp.c:204: warning: Function parameter or member 'name' not described in 'edp_panel_entry'

Fix them accordingly.

Fixes: 5540cf8f ("drm/panel-edp: Implement generic "edp-panel"s probed by EDID")
Signed-off-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: default avatarDouglas Anderson <dianders@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20211117163239.529781-1-kieran.bingham+renesas@ideasonboard.com
parent aa70a099
......@@ -196,10 +196,10 @@ struct edp_panel_entry {
/** @panel_id: 32-bit ID for panel, encoded with drm_edid_encode_panel_id(). */
u32 panel_id;
/* @delay: The power sequencing delays needed for this panel. */
/** @delay: The power sequencing delays needed for this panel. */
const struct panel_delay *delay;
/* @name: Name of this panel (for printing to logs). */
/** @name: Name of this panel (for printing to logs). */
const char *name;
};
......
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