From patchwork Tue Apr 12 04:10:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ole Henrik Jahren X-Patchwork-Id: 699541 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p3C9QuCG027373 for ; Tue, 12 Apr 2011 09:27:17 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 67EE29ED04 for ; Tue, 12 Apr 2011 02:26:56 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 12 Apr 2011 09:27:17 +0000 (UTC) X-Greylist: delayed 566 seconds by postgrey-1.31 at gabe; Mon, 11 Apr 2011 21:17:46 PDT Received: from hylle01.itea.ntnu.no (hylle01.itea.ntnu.no [129.241.56.100]) by gabe.freedesktop.org (Postfix) with ESMTP id CC0849E747 for ; Mon, 11 Apr 2011 21:17:46 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by hylle01.itea.ntnu.no (Postfix) with ESMTP id 3FB5F31E029; Tue, 12 Apr 2011 06:08:18 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at hylle01.itea.ntnu.no Received: from kontakt.itea.ntnu.no (kontakt.itea.ntnu.no [129.241.18.25]) by hylle01.itea.ntnu.no (Postfix) with ESMTP id 44AEA31E007; Tue, 12 Apr 2011 06:08:17 +0200 (CEST) Received: from siv.localdomain (unknown [82.194.219.209]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: olehenja) by kontakt.itea.ntnu.no (Postfix) with ESMTPSA id 318794A0A4B; Tue, 12 Apr 2011 06:08:17 +0200 (CEST) Received: by siv.localdomain (Postfix, from userid 1000) id 6763A600039; Tue, 12 Apr 2011 06:10:18 +0200 (CEST) Date: Tue, 12 Apr 2011 06:10:18 +0200 From: Ole Henrik Jahren To: dri-devel@lists.freedesktop.org Subject: [PATCH] Fix typo in include/drm/i915_drm.h Message-ID: <20110412041018.GC17720@siv.localdomain> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Mailman-Approved-At: Tue, 12 Apr 2011 02:26:24 -0700 Cc: linux-kernel@vger.kernel.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Signed-off-by: Ole Henrik Jahren Cc: Chris Wilson Acked-by: Daniel Vetter --- While adding DRM ioctl decoding support to strace, I noticed something that looks very much like a typo. If it is intended this way, sorry about the noise. include/drm/i915_drm.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index 0039f1f..ca7b8af 100644 --- a/include/drm/i915_drm.h +++ b/include/drm/i915_drm.h @@ -237,7 +237,7 @@ typedef struct _drm_i915_sarea { #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture) #define DRM_IOCTL_I915_GET_PIPE_FROM_CRTC_ID DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_PIPE_FROM_CRTC_ID, struct drm_i915_get_pipe_from_crtc_id) #define DRM_IOCTL_I915_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise) -#define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE DRM_IOW(DRM_COMMAND_BASE + DRM_IOCTL_I915_OVERLAY_ATTRS, struct drm_intel_overlay_put_image) +#define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE DRM_IOW(DRM_COMMAND_BASE + DRM_I915_OVERLAY_PUT_IMAGE, struct drm_intel_overlay_put_image) #define DRM_IOCTL_I915_OVERLAY_ATTRS DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs) /* Allow drivers to submit batchbuffers directly to hardware, relying