From patchwork Mon Jan 14 06:59:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 1971221 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id 7FED1DF23A for ; Mon, 14 Jan 2013 07:33:13 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B3D72E5EC1 for ; Sun, 13 Jan 2013 23:33:13 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-da0-f53.google.com (mail-da0-f53.google.com [209.85.210.53]) by gabe.freedesktop.org (Postfix) with ESMTP id CF4B7E5C39 for ; Sun, 13 Jan 2013 23:07:43 -0800 (PST) Received: by mail-da0-f53.google.com with SMTP id x6so1680164dac.12 for ; Sun, 13 Jan 2013 23:07:43 -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:in-reply-to :references:x-gm-message-state; bh=P85QGJTYuD2851vys/Ssa1OZrbKp5cB17YTj6CKrFkc=; b=hdL9ixCfhS5ygtLeLGQ5bREfJw9ML2EWaoFDtol8uoq4PN507r9LoUScbFXtHScIAy Weh8lSogSWGiDeJ33J8ubjPnTPW7LGb1T+gNz4amvPiF78kZf3xYgVt20/4/6JS/3fX+ ccwEEk8MgTYYPpSIVJ7H4Lb2Y6jCO7zfKJfk4azl59Cg0KZ78a21l0jDGLGkCh65c7IZ h87g7tJ0WpHTHaQG5Tf/7xprRiLIos+Q0/VxAomCvjc6eTZZndiXPLrYZeClMB0oMUQt R/q6FpHk12rDJomycRGX7IqM30ro5kp9pa7yCfVR/2QQkaAgK6soh3LatRUrt8CUI+sm G1Mg== X-Received: by 10.66.81.68 with SMTP id y4mr229824668pax.66.1358147263089; Sun, 13 Jan 2013 23:07:43 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id pl10sm7694401pbc.60.2013.01.13.23.07.40 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 13 Jan 2013 23:07:42 -0800 (PST) From: Sachin Kamat To: dri-devel@lists.freedesktop.org Subject: [PATCH 2/3] drm/exynos: Make ipp_handle_cmd_work static Date: Mon, 14 Jan 2013 12:29:10 +0530 Message-Id: <1358146751-2060-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1358146751-2060-1-git-send-email-sachin.kamat@linaro.org> References: <1358146751-2060-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQmTsWjHFjMl0Hoqmc+jsTHzyLBC3xSa5dpHUIdhcIIXkoxlnlfdjWCalENTpW7D+xagK238 X-Mailman-Approved-At: Sun, 13 Jan 2013 23:30:18 -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 warning: drivers/gpu/drm/exynos/exynos_drm_ipp.c:872:6: warning: symbol 'ipp_handle_cmd_work' was not declared. Should it be static? Signed-off-by: Sachin Kamat --- drivers/gpu/drm/exynos/exynos_drm_ipp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.c b/drivers/gpu/drm/exynos/exynos_drm_ipp.c index 0bda964..1a55635 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_ipp.c +++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.c @@ -869,7 +869,7 @@ static void ipp_put_event(struct drm_exynos_ipp_cmd_node *c_node, } } -void ipp_handle_cmd_work(struct device *dev, +static void ipp_handle_cmd_work(struct device *dev, struct exynos_drm_ippdrv *ippdrv, struct drm_exynos_ipp_cmd_work *cmd_work, struct drm_exynos_ipp_cmd_node *c_node)