From patchwork Mon May 5 21:54:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Boll X-Patchwork-Id: 4117471 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 0D044BFF02 for ; Mon, 5 May 2014 21:55:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 48C6920220 for ; Mon, 5 May 2014 21:55:09 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 3BF042010B for ; Mon, 5 May 2014 21:55:08 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0E2276EA16; Mon, 5 May 2014 14:55:07 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qg0-f50.google.com (mail-qg0-f50.google.com [209.85.192.50]) by gabe.freedesktop.org (Postfix) with ESMTP id 7F65D6EA16 for ; Mon, 5 May 2014 14:55:05 -0700 (PDT) Received: by mail-qg0-f50.google.com with SMTP id z60so3056259qgd.37 for ; Mon, 05 May 2014 14:55:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=tJE7ZpkW6jBI2Xtv8kUKOuFTEbyY7Uh1pcaqhqC0j70=; b=ah8wdwdJLO/7Eh4k1oVdAfGKYWc7R4JIKvADub1gpBMmp48s5djZcLjUEHECSItfaN 5yx1kjJEek5oSYBEuA3zZHD+9+HEzMu8LZGTuzQD2Xxurx1VM9JBsJD/6ochUJQjoitf X+oWg0Z8bvLtz0V9L+248e3AgBSdC2qk8dwNFHnvw3Wzjki22dMtaBLYbzji2vix2XyT Uu7Nfvr8jN9jomDE4LhtfAT7M/sLaNyQ+QvsawN0WwHhMQ0KJgPQx1/ysaHe9VuYDzQG zEzupAYr88vewPwZ/cGovijdPjiL8DVPDyQVJrFOUKJseSEQ29Ezs6DQM6m/btt3Y8S4 X6ww== X-Received: by 10.140.87.243 with SMTP id r106mr45312439qgd.75.1399326905005; Mon, 05 May 2014 14:55:05 -0700 (PDT) Received: from debian.tuwien.ac.at (p237-123.vps.tuwien.ac.at. [128.131.237.123]) by mx.google.com with ESMTPSA id r15sm13018463qgr.15.2014.05.05.14.55.03 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 05 May 2014 14:55:04 -0700 (PDT) From: Andreas Boll To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] libdrm: Fix drm.h include in qxl drm header file Date: Mon, 5 May 2014 23:54:39 +0200 Message-Id: <1399326879-3774-1-git-send-email-andreas.boll.dev@gmail.com> X-Mailer: git-send-email 1.9.2 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Use "drm.h" instead of "drm/drm.h" as used in the other header files. Fixes xserver-xorg-video-qxl build with KMS support on Debian, where this file is installed in /usr/include/libdrm. Fixes Debian bug #746807 Reported-by: Bastian Blank Signed-off-by: Andreas Boll Reviewed-by: Emil Velikov --- include/drm/qxl_drm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/qxl_drm.h b/include/drm/qxl_drm.h index 5d7de70..1e331a8 100644 --- a/include/drm/qxl_drm.h +++ b/include/drm/qxl_drm.h @@ -25,7 +25,7 @@ #define QXL_DRM_H #include -#include "drm/drm.h" +#include "drm.h" /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints.