From: "Radek Dostál" <rd@radekdostal.com>
To: Chris Wilson <chris@chris-wilson.co.uk>,
airlied@linux.ie, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCHv2] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF
Date: Mon, 20 Apr 2015 14:00:50 +0200 [thread overview]
Message-ID: <5534EA72.5030607@radekdostal.com> (raw)
In-Reply-To: <20150420114450.GH25451@nuc-i3427.alporthouse.com>
Hi Chris,
On 04/20/2015 01:44 PM, Chris Wilson wrote:
> Ah, maybe this on top of the previous try:
>
> diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> index 88f5a74..5d22ca0 100644
> --- a/drivers/gpu/drm/drm_probe_helper.c
> +++ b/drivers/gpu/drm/drm_probe_helper.c
> @@ -87,7 +87,7 @@ static int drm_helper_probe_add_cmdline_mode(struct drm_connector *connector)
> return 0;
>
> /* Only add a GTF mode if we find no matching probed modes */
> - list_for_each_entry(mode, &connector->modes, head) {
> + list_for_each_entry(mode, &connector->probed_modes, head) {
> if (mode->hdisplay != cmdline_mode->xres ||
> mode->vdisplay != cmdline_mode->yres)
> continue;
> @@ -211,7 +211,8 @@ static int drm_helper_probe_single_connector_modes_merge_bits(struct drm_connect
> mode_flags |= DRM_MODE_FLAG_3D_MASK;
>
> list_for_each_entry(mode, &connector->modes, head) {
> - mode->status = drm_mode_validate_basic(mode);
> + if (mode->status == MODE_OK)
> + mode->status = drm_mode_validate_basic(mode);
>
> if (mode->status == MODE_OK)
> mode->status = drm_mode_validate_size(mode, maxX, maxY
perfect - this seems to work :)
Radek
prev parent reply other threads:[~2015-04-20 12:00 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-19 21:05 [PATCH] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF Radek Dostal
2015-04-20 5:26 ` [PATCHv2] " Radek Dostal
2015-04-20 9:09 ` Chris Wilson
2015-04-20 9:36 ` Radek Dostál
2015-04-20 9:46 ` Chris Wilson
2015-04-20 9:58 ` Chris Wilson
2015-04-20 10:38 ` Radek Dostál
2015-04-20 10:48 ` Chris Wilson
2015-04-20 10:57 ` Radek Dostál
2015-04-20 11:00 ` Chris Wilson
2015-04-20 11:20 ` Radek Dostál
2015-04-20 11:44 ` Chris Wilson
2015-04-20 12:00 ` Radek Dostál [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5534EA72.5030607@radekdostal.com \
--to=rd@radekdostal.com \
--cc=airlied@linux.ie \
--cc=chris@chris-wilson.co.uk \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox