- Rip out komeda internal properties and move the driver to -misc (Daniel)

- Handle a couple edge cases with incomplete/incorrect cmdline modes (Dmitry)
 - Fix some silly warnings (Arnd)
 - Add orientation quirk for newer GPD MicroPCs (Hans)
 
 Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
 Cc: Liviu Dudau <Liviu.Dudau@arm.com>
 Cc: Dmitry Osipenko <digetx@gmail.com>
 Cc: Arnd Bergmann <arnd@arndb.de>
 Cc: Hans de Goede <hdegoede@redhat.com>
 -----BEGIN PGP SIGNATURE-----
 
 iQEzBAABCgAdFiEEfxcpfMSgdnQMs+QqlvcN/ahKBwoFAl0wiTYACgkQlvcN/ahK
 Bwqc+AgAtNgfn9ZoSL3+wUQDL2FdYB9hhV5MwuAvuwFKH/6jufpyn6eUFlAsecbr
 59/s9xBO4143dpGNkxqmz+bx7V00fzJKUqBRQ+IAGluyXmQFC4efzbKgKYGcZThK
 v+SvTCiKXxjpaLTSJNipD+ALj9WtMUcWXANuiBagfBwL1LJSQwq+hxTuI3yDkL1v
 SoqJZiwplpypFx1oBI5qYsbmGVfj3tEzfGd+FnR1MnLDUhcUQ4Rj+vrUkO2tETsH
 +Rrk1/pImXJ5PEIQgosZNSV0hEpRwMLLakZWesoaWxy083u/atFaecZ2oOqsnOmx
 Mr2VQf5M0dOzdXfgdaegLZFEALFEKw==
 =Y/Pa
 -----END PGP SIGNATURE-----

Merge drm-misc-next-fixes-2019-07-18 into drm-misc-fixes

Picking up 7aaddd96d5 ("drm/modes: Don't apply cmdline's rotation if it wasn't specified")
from drm-misc-next-fixes.  It missed the merge window.

Signed-off-by: Sean Paul <seanpaul@chromium.org>
This commit is contained in:
Sean Paul 2019-07-22 09:56:14 -04:00
commit cfb7156672

View File

@ -859,7 +859,7 @@ bool drm_client_rotation(struct drm_mode_set *modeset, unsigned int *rotation)
* simple XOR between the two handle the addition nicely.
*/
cmdline = &connector->cmdline_mode;
if (cmdline->specified) {
if (cmdline->specified && cmdline->rotation_reflection) {
unsigned int cmdline_rest, panel_rest;
unsigned int cmdline_rot, panel_rot;
unsigned int sum_rot, sum_rest;