From patchwork Fri Mar 15 18:02:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bryce Harrington X-Patchwork-Id: 2279831 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 76E9B3FC8F for ; Fri, 15 Mar 2013 18:04:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6D430E6ACB for ; Fri, 15 Mar 2013 11:04:23 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from smtp.outflux.net (smtp.outflux.net [198.145.64.163]) by gabe.freedesktop.org (Postfix) with ESMTP id DE889E6ACB for ; Fri, 15 Mar 2013 11:03:16 -0700 (PDT) Received: from humber.bryceharrington.org (static-50-53-70-170.bvtn.or.frontiernet.net [50.53.70.170]) (authenticated bits=0) by vinyl.outflux.net (8.14.4/8.14.4/Debian-2ubuntu2) with ESMTP id r2FI36UL013852 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 15 Mar 2013 11:03:12 -0700 From: Bryce Harrington To: intel-gfx@lists.freedesktop.org, chris@chris-wilson.co.uk Date: Fri, 15 Mar 2013 11:02:53 -0700 Message-Id: <1363370578-30443-4-git-send-email-bryce@canonical.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1363370578-30443-1-git-send-email-bryce@canonical.com> References: <1363370578-30443-1-git-send-email-bryce@canonical.com> X-MIMEDefang-Filter: outflux$Revision: 1.316 $ X-HELO: humber.bryceharrington.org X-Scanned-By: MIMEDefang 2.71 on 198.145.64.163 Cc: Bryce Harrington Subject: [Intel-gfx] [PATCH 3/8] xfree86: Provide more details on failure X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Signed-off-by: Bryce Harrington --- hw/xfree86/os-support/linux/lnx_platform.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/os-support/linux/lnx_platform.c b/hw/xfree86/os-support/linux/lnx_platform.c index 6ee219a..3ae2db1 100644 --- a/hw/xfree86/os-support/linux/lnx_platform.c +++ b/hw/xfree86/os-support/linux/lnx_platform.c @@ -7,6 +7,8 @@ #include #include #include +#include +#include /* Linux platform device support */ #include "xf86_OSproc.h" @@ -35,7 +37,7 @@ get_drm_info(struct OdevAttributes *attribs, char *path) sv.drm_dd_minor = -1; /* Don't care */ err = drmSetInterfaceVersion(fd, &sv); if (err) { - ErrorF("setversion 1.4 failed\n"); + ErrorF("setversion 1.4 failed: %s\n", strerror(-err)); goto out; }