compositor-drm: Check for OUTPUT_CONFIG_OFF instead of using strcmp()

A call to strcmp() is already made in output_section_done() and
output->config is set appropriately if mode is "off". There is
no need to duplicate that in create_output_for_connector().
Ander Conselvan de Oliveira 12 years ago committed by Kristian Høgsberg
parent 383b671ccf
commit dc79e6d289
  1. 2
      src/compositor-drm.c

@ -1409,7 +1409,7 @@ create_output_for_connector(struct drm_compositor *ec,
}
}
if (o && strcmp("off", o->mode) == 0) {
if (o && o->config == OUTPUT_CONFIG_OFF) {
weston_log("Disabling output %s\n", o->name);
drmModeSetCrtc(ec->drm.fd, output->crtc_id,

Loading…
Cancel
Save