From patchwork Mon Feb 4 17:09:05 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robin Murphy X-Patchwork-Id: 10796157 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 229F313A4 for ; Mon, 4 Feb 2019 17:10:20 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0F8602BD1C for ; Mon, 4 Feb 2019 17:10:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F3ED92B8B8; Mon, 4 Feb 2019 17:10:19 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id A5B5D2B820 for ; Mon, 4 Feb 2019 17:10:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=F38j2RmDkaxqI3pTOELm3HOz2TsmOLIeAxkB5F1iQhg=; b=S9PUQ7a2OjwfTv fxNSBlxusUafDpxi/mB95A9pqbnYYwuePZGGVEQ26sUz9QVep94QJWSRxJR1WgKhOAhx3WNuH9v5U hbIvzM7UAk1Sh/kah0S6jcQWYY2WskVFFvamEFG/unlUCPNlfZ3YT44HoNDt6Cxr+n+AlokA5nKGV 7KLw0AHSelggvoX5bqKgVU8J45iqg6gCq1Z+XI+bnGiJ8vCAvQcBN+F36/sewvkjcNipby6YjoEfd ojY1H5xT3zcAV5/a9ujmWl3h02cxfCFcj0YBNgmh8DtHOXXYA32cs/vmyLeZ9sSUQcWEjoqJEVOhJ ErsUjqCvFwr0ZISvylNA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1gqhlA-0004PQ-Ku; Mon, 04 Feb 2019 17:10:16 +0000 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70] helo=foss.arm.com) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1gqhkd-0003J7-R5 for linux-arm-kernel@lists.infradead.org; Mon, 04 Feb 2019 17:09:49 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8D0DB15AD; Mon, 4 Feb 2019 09:09:43 -0800 (PST) Received: from e110467-lin.cambridge.arm.com (e110467-lin.cambridge.arm.com [10.1.196.75]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 0AAA93F589; Mon, 4 Feb 2019 09:09:41 -0800 (PST) From: Robin Murphy To: will.deacon@arm.com, mark.rutland@arm.com Subject: [PATCH 2/5] cpu/hotplug: Export __cpuhp_state_add_instance_cpuslocked() Date: Mon, 4 Feb 2019 17:09:05 +0000 Message-Id: <76aa8ce6c6526aeb2ccfce04b203b0a24f50a097.1549299188.git.robin.murphy@arm.com> X-Mailer: git-send-email 2.20.1.dirty In-Reply-To: References: MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190204_090944_454724_EB6BF7F5 X-CRM114-Status: GOOD ( 14.78 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: suzuki.poulose@arm.com, peterz@infradead.org, bigeasy@linutronix.de, linux-kernel@vger.kernel.org, tglx@linutronix.de, linux-arm-kernel@lists.infradead.org Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP This is the only member of the family not exported already, but happens to be the one I need to fix a bug in a modular driver. Signed-off-by: Robin Murphy --- kernel/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/cpu.c b/kernel/cpu.c index 91d5c38eb7e5..c1bd8ed7546e 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -1683,6 +1683,7 @@ int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state, mutex_unlock(&cpuhp_state_mutex); return ret; } +EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance_cpuslocked); int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node, bool invoke)