Lines Matching refs:status
1117 * The mode status
1123 enum drm_mode_status status;
1125 status = drm_mode_validate_basic(mode);
1126 if (status != MODE_OK)
1127 return status;
1143 * limitations of the DRM device/connector. If a mode is too big its status
1148 * The mode status
1173 * The mode status
1180 enum drm_mode_status status = MODE_OK;
1185 status = MODE_NO_420;
1188 return status;
1192 #define MODE_STATUS(status) [MODE_ ## status + 3] = #status
1239 const char *drm_get_mode_status_name(enum drm_mode_status status)
1241 int index = status + 3;
1256 * validation has been completed. All modes whose status is not MODE_OK will be
1257 * removed from the list, and if @verbose the status code and mode name is also
1266 if (mode->status != MODE_OK) {
1272 drm_get_mode_status_name(mode->status));
1368 if (mode->status == MODE_STALE) {
2011 out->status = drm_mode_validate_driver(dev, out);
2012 if (out->status != MODE_OK)