From patchwork Tue Jul 23 09:28:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dongsheng Wang X-Patchwork-Id: 261033 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id 3AE7F2C0298 for ; Tue, 23 Jul 2013 20:20:44 +1000 (EST) Received: from tx2outboundpool.messaging.microsoft.com (tx2ehsobe005.messaging.microsoft.com [65.55.88.15]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client CN "mail.global.frontbridge.com", Issuer "MSIT Machine Auth CA 2" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 37CC62C00BB for ; Tue, 23 Jul 2013 20:19:41 +1000 (EST) Received: from mail161-tx2-R.bigfish.com (10.9.14.245) by TX2EHSOBE015.bigfish.com (10.9.40.35) with Microsoft SMTP Server id 14.1.225.22; Tue, 23 Jul 2013 10:19:36 +0000 Received: from mail161-tx2 (localhost [127.0.0.1]) by mail161-tx2-R.bigfish.com (Postfix) with ESMTP id 7CBF2E0105; Tue, 23 Jul 2013 10:19:36 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 0 X-BigFish: VS0(zzzz1f42h208ch1ee6h1de0h1fdah2073h1202h1e76h1d1ah1d2ah1fc6hzz1de098h1de097h8275bhz2dh2a8h668h839hd24he5bhf0ah1288h12a5h12a9h12bdh12e5h137ah139eh13b6h1441h1504h1537h162dh1631h1758h1898h18e1h1946h19b5h1ad9h1b0ah1d0ch1d2eh1d3fh1dfeh1dffh1e23h1155h) Received: from mail161-tx2 (localhost.localdomain [127.0.0.1]) by mail161-tx2 (MessageSwitch) id 1374574774699190_7088; Tue, 23 Jul 2013 10:19:34 +0000 (UTC) Received: from TX2EHSMHS038.bigfish.com (unknown [10.9.14.236]) by mail161-tx2.bigfish.com (Postfix) with ESMTP id 94DE4180052; Tue, 23 Jul 2013 10:19:34 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS038.bigfish.com (10.9.99.138) with Microsoft SMTP Server (TLS) id 14.1.225.23; Tue, 23 Jul 2013 10:19:34 +0000 Received: from az84smr01.freescale.net (10.64.34.197) by 039-SN1MMR1-005.039d.mgd.msft.net (10.84.1.17) with Microsoft SMTP Server (TLS) id 14.3.136.1; Tue, 23 Jul 2013 10:19:34 +0000 Received: from rock.am.freescale.net (rock.ap.freescale.net [10.193.20.106]) by az84smr01.freescale.net (8.14.3/8.14.0) with ESMTP id r6NAJLGu024080; Tue, 23 Jul 2013 03:19:31 -0700 From: Dongsheng Wang To: Subject: [PATCH 2/2] cpuidle: export cpuidle_idle_call symbol Date: Tue, 23 Jul 2013 17:28:01 +0800 Message-ID: <1374571681-31911-2-git-send-email-dongsheng.wang@freescale.com> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1374571681-31911-1-git-send-email-dongsheng.wang@freescale.com> References: <1374571681-31911-1-git-send-email-dongsheng.wang@freescale.com> MIME-Version: 1.0 X-OriginatorOrg: freescale.com Cc: rjw@sisk.pl, linuxppc-dev@lists.ozlabs.org, Wang Dongsheng , linux-pm@vger.kernel.org X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" From: Wang Dongsheng Export cpuidle_idle_call symbol, make this function can be invoked in the module. Signed-off-by: Wang Dongsheng --- Branch: pm-cpuidle drivers/cpuidle/cpuidle.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 534320a..d0a61d6 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c @@ -168,6 +168,7 @@ int cpuidle_idle_call(void) return 0; } +EXPORT_SYMBOL_GPL(cpuidle_idle_call); /** * cpuidle_install_idle_handler - installs the cpuidle idle loop handler