From patchwork Sat Mar 2 09:36:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2207341 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 884943FCF2 for ; Sat, 2 Mar 2013 17:05:47 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7E12EE619C for ; Sat, 2 Mar 2013 09:05:47 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by gabe.freedesktop.org (Postfix) with ESMTP id 9A996E5C31 for ; Sat, 2 Mar 2013 01:46:49 -0800 (PST) Received: by mail-pa0-f54.google.com with SMTP id fa10so2269204pad.41 for ; Sat, 02 Mar 2013 01:46:49 -0800 (PST) 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 :x-gm-message-state; bh=5EUqHkiD6ZTAhHcu2y5/1H3e2usfgUzf1hHvg27fWnQ=; b=EccpqtDYj7h6joslnf75GcV0Po8xKqZJB/xZjHxzMIHUzmFk/UnWKr0M6ASVtEY+Y/ VS2JHwYQoW/c4VRm7ExpAd1AVYrJOEqNSkhpgjYWqguIgpLJJH2pVyiY0zrVx0/AmmcQ tMb+GV8bkpbvZxnf/K5ZD5kl8rB8mo9lssI6zXzfRFT6Z5eeS0BBLZidy5N7IeswKTGr ZQGSYMQkoAv7zsuMSTUuHSoYktz17Wf/EnyhYlaZ1eAe4h9GJ5kCwGxCjLJD17OrkyAt 4JzbXVTKDB+kr2DfhgM3Cp1mC+j6cD9KsBgsuD/A7dMjYFqxWWqxl0YV59CycgAWyknN W4Og== X-Received: by 10.66.86.201 with SMTP id r9mr23185420paz.14.1362217609410; Sat, 02 Mar 2013 01:46:49 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id wm3sm15083786pbc.4.2013.03.02.01.46.45 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 02 Mar 2013 01:46:48 -0800 (PST) From: Sachin Kamat To: dri-devel@lists.freedesktop.org Subject: [PATCH 1/1] drm/exynos: Make mixer_check_timing static Date: Sat, 2 Mar 2013 15:06:24 +0530 Message-Id: <1362216984-6605-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQlS2fjRHNd6VUyeglxSNVNzfUsQnncDBkMeaUZH1F30iKU5fanM9BFnkvs1P47UM2P5z4QU X-Mailman-Approved-At: Sat, 02 Mar 2013 09:05:34 -0800 Cc: sachin.kamat@linaro.org, patches@linaro.org 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 Fixes the following sparse warning: drivers/gpu/drm/exynos/exynos_mixer.c:821:5: warning: symbol 'mixer_check_timing' was not declared. Should it be static? Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/exynos_mixer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c index e919aba..2f4f72f 100644 --- a/drivers/gpu/drm/exynos/exynos_mixer.c +++ b/drivers/gpu/drm/exynos/exynos_mixer.c @@ -818,7 +818,7 @@ static void mixer_win_disable(void *ctx, int win) mixer_ctx->win_data[win].enabled = false; } -int mixer_check_timing(void *ctx, struct fb_videomode *timing) +static int mixer_check_timing(void *ctx, struct fb_videomode *timing) { struct mixer_context *mixer_ctx = ctx; u32 w, h;