From patchwork Mon Nov 19 08:37:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 12912 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 3A5CF23E02 for ; Mon, 19 Nov 2012 08:44:03 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id C72C0A182EA for ; Mon, 19 Nov 2012 08:44:02 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so6101845iej.11 for ; Mon, 19 Nov 2012 00:44:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=bMv4JMj7nEnKDWZva9Y9oLWaANa1UQYcJKyHOEOJoCg=; b=pUAejcSnpDPUUKjs+/JAxhEn/Rlm6ZdN66clFJ/m+QG7x+KcGDX1OJK26Sq4zx+zqK CHd+s6bldmyrREkNKk1CJFgDT7E4MnPMsvnAOAd2vxsWwCpShEkqLEiVuQpYGoTBVVoL +yrUBEiCiwqYrER2qGHJMiiibpT/JwcamChegZJXAApO46BpQQxQvq65+Vr671D2AhA1 4k00n8AS6YIsBO492V6GaLitkNz7NtCQcwurJatzaBKMtqK5P93tFzgE2HNlvnzrYn7z ZCzg1lhq02Ab4nlg9jUZSu2Hg9f81dJuYVShxG2qYAuLyg7ZR/ULEiMclCAR+SWF4eAa Rxrw== Received: by 10.50.173.34 with SMTP id bh2mr5863109igc.70.1353314642193; Mon, 19 Nov 2012 00:44:02 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp130053igt; Mon, 19 Nov 2012 00:44:01 -0800 (PST) Received: by 10.69.1.37 with SMTP id bd5mr37088278pbd.77.1353314641308; Mon, 19 Nov 2012 00:44:01 -0800 (PST) Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by mx.google.com with ESMTPS id bo5si12600832pab.44.2012.11.19.00.44.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Nov 2012 00:44:01 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.42 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.42; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.42 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f42.google.com with SMTP id fa1so3173996pad.29 for ; Mon, 19 Nov 2012 00:44:00 -0800 (PST) Received: by 10.68.223.230 with SMTP id qx6mr31735124pbc.159.1353314640834; Mon, 19 Nov 2012 00:44:00 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id gl9sm5872551pbc.51.2012.11.19.00.43.58 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Nov 2012 00:44:00 -0800 (PST) From: Sachin Kamat To: dri-devel@lists.freedesktop.org Cc: inki.dae@samsung.com, jy0922.shim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/2] drm/exynos: Make exynos4_fimd_driver_data static Date: Mon, 19 Nov 2012 14:07:53 +0530 Message-Id: <1353314274-21157-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQmaLvxJAVmzyPCiFvK7J4tdogVXIEFtQASthMwjXzTxvJm+u5yBM8Kbp6QOzHvgn1mMUQxS Fixes the following sparse warning: drivers/gpu/drm/exynos/exynos_drm_fimd.c:65:25: warning: symbol 'exynos4_fimd_driver_data' was not declared. Should it be static? Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c index 130a2b5..730ce56 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c +++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c @@ -61,7 +61,7 @@ struct fimd_driver_data { unsigned int timing_base; }; -struct fimd_driver_data exynos4_fimd_driver_data = { +static struct fimd_driver_data exynos4_fimd_driver_data = { .timing_base = 0x0, };