From patchwork Tue Feb 12 00:24:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Vetter X-Patchwork-Id: 2126611 Return-Path: X-Original-To: patchwork-dri-devel@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 F27803FCA4 for ; Tue, 12 Feb 2013 00:25:58 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F3C56E6300 for ; Mon, 11 Feb 2013 16:25:58 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ee0-f50.google.com (mail-ee0-f50.google.com [74.125.83.50]) by gabe.freedesktop.org (Postfix) with ESMTP id E02EEE60D4 for ; Mon, 11 Feb 2013 16:24:44 -0800 (PST) Received: by mail-ee0-f50.google.com with SMTP id e51so3589058eek.37 for ; Mon, 11 Feb 2013 16:24:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ffwll.ch; s=google; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=lf6h7YplYuVyHn86qxdD8LVsnGegw2yy7aMkfCL+QWE=; b=fXQ48ZLHoWlEfcFxyhkgo+ssdJPCL21Ej5xTPn++lawK5FMXAW9NxS0RvFYeq3EkvN 2VUAvMBgoLCSN1ypUeI3qpVZ+fgkP2Bjwf9CxDMb+3odDX42HMPZ32RD1e8dUjkkqq/a Fferb419667wgvj2IKeNs6eSU48pDpstoS7I4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=lf6h7YplYuVyHn86qxdD8LVsnGegw2yy7aMkfCL+QWE=; b=LUHeDZyvbwKSIQMMgo5fbcP+NP2CBmxZFpTIMe/X7VHLsE+KlhsmvK2B3JFQ0GMK4x kCxgKSelWEyfkUkRa985DsTiBuSt2Sfa4RHrat4IoBdgRfmwbv56TWLS/mQxvvukkiO8 lwUlOl/egxHlJqtSNyfWDy2dBX6XJbW4JNIBRCcRSnHDfXRdFDqAShlM6e0H6i9aeBl9 vINqr+CYT6CVTO+H3hx5Ns0IDTSM1w50komvuM6dj9LddvpHzoHf45phJ1d2Yk4b2cvH MhFoAk4Dzoc+kDXkYcbiT1vdSdEiFPuXHDD/VH9EzYifZZzxJaRrya5tLZUVfcGUvFHM opOA== X-Received: by 10.14.213.7 with SMTP id z7mr56845692eeo.2.1360628683566; Mon, 11 Feb 2013 16:24:43 -0800 (PST) Received: from biers.ffwll.local (178-83-130-250.dynamic.hispeed.ch. [178.83.130.250]) by mx.google.com with ESMTPS id 3sm65194025eej.6.2013.02.11.16.24.42 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Feb 2013 16:24:42 -0800 (PST) From: Daniel Vetter To: DRI Development Subject: [PATCH] drm/fb-helper: remove unused members of struct drm_fb_helper Date: Tue, 12 Feb 2013 01:24:36 +0100 Message-Id: <1360628676-11434-1-git-send-email-daniel.vetter@ffwll.ch> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: X-Gm-Message-State: ALoCoQmCX9atbi1yjFXptXdD3G1gi+PO4wRpZ/AlvBluQ61AVUvw31MR0m4V5ZaXSDMSAwBO+5Rg Cc: Daniel Vetter X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 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 Spotted by Rob Clark. Signed-off-by: Daniel Vetter --- include/drm/drm_fb_helper.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/drm/drm_fb_helper.h b/include/drm/drm_fb_helper.h index a60311c..8ef4c63 100644 --- a/include/drm/drm_fb_helper.h +++ b/include/drm/drm_fb_helper.h @@ -77,9 +77,7 @@ struct drm_fb_helper_connector { struct drm_fb_helper { struct drm_framebuffer *fb; - struct drm_framebuffer *saved_fb; struct drm_device *dev; - struct drm_display_mode *mode; int crtc_count; struct drm_fb_helper_crtc *crtc_info; int connector_count;