1
0
Fork 0

drm/panel: add kernel doc for size attributes in panel_desc

Document that 'width' and 'height' are measured in millimeters.

Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
Signed-off-by: Thierry Reding <treding@nvidia.com>
hifive-unleashed-5.1
Ulrich Ölmann 2015-12-04 12:31:28 +01:00 committed by Thierry Reding
parent 8def22e50f
commit 85533e3b32
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ struct panel_desc {
unsigned int bpc;
/**
* @width: width (in millimeters) of the panel's active display area
* @height: height (in millimeters) of the panel's active display area
*/
struct {
unsigned int width;
unsigned int height;