DRM: clean up and document parsing of video= parameter
commit04fee895ef98ffbb91a941b53a92d6949bb6d1c4
authorRolf Eike Beer <eike-kernel@sf-tec.de>
Wed, 15 Jun 2011 09:27:02 +0000 (15 11:27 +0200)
committerDave Airlie <airlied@redhat.com>
Mon, 25 Jul 2011 11:02:26 +0000 (25 12:02 +0100)
tree7f146f266d74d4a788309bc141c99282d68bd1c2
parentee2762916f5594e60d8789593f149ed83b560cf7
DRM: clean up and document parsing of video= parameter

The video= parameter of the DRM drivers supports some additional flags that
the normal fb drivers do not have. They also allow to limit these flags to
specific outputs. Both things were previously undocumented.

Also the parsing of the line had some oddities:
-A lot of misplaced options were silently ignored or partly rejected instead
 of stopping the parsing immediately
-The 'R' option is documented to follow the 'M' option if specified. It is not
 documented that 'M' is needed to specify 'R' (also this is the case for normal
 fb drivers). In fact the code is correct for normal fb drivers but wrong for
 DRM ones.
 The old code allowed 'R' only _before_ 'M' (since it parses backwards) and only
 if 'M' is given at all which is not needed for the DRM drivers.
-the margins option ('m') was parsed but later ignored even if the later
 functions support it.
-specifying multiple enable options at the same time did not lead to an error.
-specifying something bogus for horizontal resolution (i.e. other things as
 digits) did not lead to an error but an invalid resolution was used.

If any errors are encountered the position of the faulting string is now
printed to the user and the complete mode is ignored. This gives much
more consistent error behaviour.

I also removed some useless assignments and changed the local flag variables
to be bool.

Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Documentation/fb/modedb.txt
drivers/gpu/drm/drm_modes.c