From patchwork Mon Nov 12 17:32:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ville Syrjala X-Patchwork-Id: 1729291 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 062223FCDE for ; Mon, 12 Nov 2012 17:33:31 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C4C3F9F307 for ; Mon, 12 Nov 2012 09:33:30 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTP id CBF1D9EF76 for ; Mon, 12 Nov 2012 09:33:11 -0800 (PST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 12 Nov 2012 09:32:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,764,1344236400"; d="scan'208";a="218381026" Received: from stinkbox.fi.intel.com (HELO stinkbox) ([10.237.72.168]) by orsmga001.jf.intel.com with SMTP; 12 Nov 2012 09:33:09 -0800 Received: by stinkbox (sSMTP sendmail emulation); Mon, 12 Nov 2012 19:33:08 +0200 From: ville.syrjala@linux.intel.com To: dri-devel@lists.freedesktop.org Subject: =?UTF-8?q?=5BPATCH=2001/22=5D=20drm=3A=20Add=20missing=20EXPORT=5FSYMBOL=28=29s=20for=20drm=5Fflip?= Date: Mon, 12 Nov 2012 19:32:39 +0200 Message-Id: <1352741580-12141-2-git-send-email-ville.syrjala@linux.intel.com> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1352741580-12141-1-git-send-email-ville.syrjala@linux.intel.com> References: <1352741580-12141-1-git-send-email-ville.syrjala@linux.intel.com> MIME-Version: 1.0 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: , 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 From: Ander Conselvan de Oliveira --- drivers/gpu/drm/drm_flip.c | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/drm_flip.c b/drivers/gpu/drm/drm_flip.c index 6ccc3f8..a20e6a4 100644 --- a/drivers/gpu/drm/drm_flip.c +++ b/drivers/gpu/drm/drm_flip.c @@ -24,6 +24,7 @@ * Ville Syrjälä */ +#include #include static void drm_flip_driver_cleanup(struct work_struct *work) @@ -141,6 +142,7 @@ void drm_flip_helper_init(struct drm_flip_helper *helper, helper->driver = driver; helper->funcs = funcs; } +EXPORT_SYMBOL(drm_flip_helper_init); void drm_flip_helper_clear(struct drm_flip_helper *helper) { @@ -176,6 +178,7 @@ void drm_flip_helper_clear(struct drm_flip_helper *helper) if (need_cleanup) queue_work(driver->wq, &driver->cleanup_work); } +EXPORT_SYMBOL(drm_flip_helper_clear); void drm_flip_helper_fini(struct drm_flip_helper *helper) { @@ -186,6 +189,7 @@ void drm_flip_helper_fini(struct drm_flip_helper *helper) flush_work_sync(&driver->finish_work); flush_work_sync(&driver->cleanup_work); } +EXPORT_SYMBOL(drm_flip_helper_fini); void drm_flip_helper_vblank(struct drm_flip_helper *helper) { @@ -223,6 +227,7 @@ void drm_flip_helper_vblank(struct drm_flip_helper *helper) if (need_cleanup) queue_work(driver->wq, &driver->cleanup_work); } +EXPORT_SYMBOL(drm_flip_helper_vblank); void drm_flip_driver_init(struct drm_flip_driver *driver, const struct drm_flip_driver_funcs *funcs) @@ -239,6 +244,7 @@ void drm_flip_driver_init(struct drm_flip_driver *driver, driver->wq = create_singlethread_workqueue("drm_flip"); } +EXPORT_SYMBOL(drm_flip_driver_init); void drm_flip_driver_fini(struct drm_flip_driver *driver) { @@ -248,6 +254,7 @@ void drm_flip_driver_fini(struct drm_flip_driver *driver) WARN_ON(!list_empty(&driver->finish_list)); WARN_ON(!list_empty(&driver->cleanup_list)); } +EXPORT_SYMBOL(drm_flip_driver_fini); void drm_flip_driver_schedule_flips(struct drm_flip_driver *driver, struct list_head *flips) @@ -298,6 +305,7 @@ void drm_flip_driver_schedule_flips(struct drm_flip_driver *driver, if (need_cleanup) queue_work(driver->wq, &driver->cleanup_work); } +EXPORT_SYMBOL(drm_flip_driver_schedule_flips); void drm_flip_driver_prepare_flips(struct drm_flip_driver *driver, struct list_head *flips) @@ -311,6 +319,7 @@ void drm_flip_driver_prepare_flips(struct drm_flip_driver *driver, helper->funcs->prepare(flip); } } +EXPORT_SYMBOL(drm_flip_driver_prepare_flips); void drm_flip_driver_complete_flips(struct drm_flip_driver *driver, struct list_head *flips) @@ -365,6 +374,7 @@ void drm_flip_driver_complete_flips(struct drm_flip_driver *driver, if (need_cleanup) queue_work(driver->wq, &driver->cleanup_work); } +EXPORT_SYMBOL(drm_flip_driver_complete_flips); void drm_flip_init(struct drm_flip *flip, struct drm_flip_helper *helper) @@ -374,3 +384,4 @@ void drm_flip_init(struct drm_flip *flip, flip->finished = false; INIT_LIST_HEAD(&flip->list); } +EXPORT_SYMBOL(drm_flip_init);