From patchwork Wed Nov 26 01:33:10 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Clark X-Patchwork-Id: 5383301 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1F6629F2F5 for ; Wed, 26 Nov 2014 01:33:20 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7268E20160 for ; Wed, 26 Nov 2014 01:33:19 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id BE7E2201CD for ; Wed, 26 Nov 2014 01:33:18 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 003856E347; Tue, 25 Nov 2014 17:33:18 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by gabe.freedesktop.org (Postfix) with ESMTP id 3B48A6E347 for ; Tue, 25 Nov 2014 17:33:17 -0800 (PST) Received: by mail-qa0-f54.google.com with SMTP id i13so1302538qae.13 for ; Tue, 25 Nov 2014 17:33:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=rWk0gIQB26pzOP9kmlzeP4X+vmkVUWLF8wy5FaJpXkI=; b=R93iw8V36JkY/ugleaUVqomXD+JMRalohT/LhU8GRKZQBPbQ18FsZeOjkxYc+HIjZZ HOYNpeRPLah9z3ifBSZQkWWvc2da30v+Ko2iKrBpd0MmtKD8a9KFyEWRdOKvZCpo1WnE Nr9EwMGufZPXnIPzDxUOFvuVHk2Ygyn0TrBvdEP2ekIYeBusTTC/CTMC7O5gvzxSVOlJ 9BnBLEV+thaqz4JJydtp8VdcXEI1QlZKoLA9zS71ovzpZA561rCuG3zBPXpy4E6dLiJl 5VL/N0URPw53o67SMoKDC3DhUtz/3QGFkfo/50azeEpksLQqboMvaDqgXSFHDNLg/5sb Mpeg== X-Received: by 10.224.23.9 with SMTP id p9mr41291641qab.92.1416965596889; Tue, 25 Nov 2014 17:33:16 -0800 (PST) Received: from localhost ([2601:6:2c00:943:2677:3ff:fed3:ff40]) by mx.google.com with ESMTPSA id l67sm2686358qgd.49.2014.11.25.17.33.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Nov 2014 17:33:16 -0800 (PST) From: Rob Clark To: dri-devel@lists.freedesktop.org Subject: [PATCH 1/2] drm: fix indentation Date: Tue, 25 Nov 2014 20:33:10 -0500 Message-Id: <1416965591-7198-2-git-send-email-robdclark@gmail.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1416965591-7198-1-git-send-email-robdclark@gmail.com> References: <1416965591-7198-1-git-send-email-robdclark@gmail.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 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.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 Signed-off-by: Rob Clark --- include/drm/drmP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drmP.h b/include/drm/drmP.h index be776fb..8ba35c6 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -809,7 +809,7 @@ struct drm_device { struct drm_local_map *agp_buffer_map; unsigned int agp_buffer_token; - struct drm_mode_config mode_config; /**< Current mode config */ + struct drm_mode_config mode_config; /**< Current mode config */ /** \name GEM information */ /*@{ */