From patchwork Wed May 6 00:44:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Luis R. Rodriguez" X-Patchwork-Id: 6344801 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CB9389F373 for ; Wed, 6 May 2015 00:49:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F40E920220 for ; Wed, 6 May 2015 00:49:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 13F242021B for ; Wed, 6 May 2015 00:49:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755268AbbEFAsz (ORCPT ); Tue, 5 May 2015 20:48:55 -0400 Received: from mail-pa0-f48.google.com ([209.85.220.48]:34040 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754935AbbEFAsy (ORCPT ); Tue, 5 May 2015 20:48:54 -0400 Received: by pacyx8 with SMTP id yx8so210091797pac.1; Tue, 05 May 2015 17:48:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=ZRV20Q3e+ZZsV+89ckfwu1u3aseUp5+mkh5dCKW6DHs=; b=jW9mvWUeZ9O/ms31Ktp/e8Xu7S1Z28ryCS0S8GW9UovxMPC9rsf5oQ6OOYJFYiUk/M v9FCkAbuTgQGUL8VauZdVHDvD/7QwPR9ns4k7PfY9yZPLUdDjGniyDcJZG/RI4iX65+6 Kfhp+2iscqN7hXZr2kSQWHUeEOolRgX6Pb6e1iEAkNEB4I0Jfryd4TzUhTAR3Bn/dO97 KLy9RtbndQJdwdOSBEt7f9eHWdnguNYslw0BzC+tGAPQQpZBMxA2TQfj7tQ/dIwiFPnL 0hAoj4CVjSNO13sF2ZZQRkwPFLwWp4Tv1Ugm9BWSQK/bACR/4Y0ZunEka9HezrVI74lL zcpg== X-Received: by 10.68.139.225 with SMTP id rb1mr14729087pbb.68.1430873333497; Tue, 05 May 2015 17:48:53 -0700 (PDT) Received: from mcgrof@gmail.com (c-98-234-145-61.hsd1.ca.comcast.net. [98.234.145.61]) by mx.google.com with ESMTPSA id bc14sm82927pac.6.2015.05.05.17.48.50 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 05 May 2015 17:48:51 -0700 (PDT) Received: by mcgrof@gmail.com (sSMTP sendmail emulation); Tue, 05 May 2015 17:46:42 -0700 From: "Luis R. Rodriguez" To: rusty@rustcorp.com.au, dhowells@redhat.com, ming.lei@canonical.com, seth.forshee@canonical.com, kyle@kernel.org Cc: akpm@linux-foundation.org, gregkh@linuxfoundation.org, keescook@chromium.org, casey@schaufler-ca.com, tiwai@suse.de, mjg59@srcf.ucam.org, wireless-regdb@lists.infradead.org, linux-wireless@vger.kernel.org, jlee@suse.com, linux-kernel@vger.kernel.org, "Luis R. Rodriguez" Subject: [PATCH v1 01/12] kernel/params.c: export param_ops_bool_enable_only Date: Tue, 5 May 2015 17:44:19 -0700 Message-Id: <1430873070-7290-2-git-send-email-mcgrof@do-not-panic.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1430873070-7290-1-git-send-email-mcgrof@do-not-panic.com> References: <1430873070-7290-1-git-send-email-mcgrof@do-not-panic.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: "Luis R. Rodriguez" This will grant access to this helper to code built as modules. Cc: Rusty Russell Cc: David Howells Cc: Ming Lei Cc: Seth Forshee Cc: Kyle McMartin Signed-off-by: Luis R. Rodriguez --- kernel/params.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/params.c b/kernel/params.c index a62dbf8..807f3d4 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -364,6 +364,7 @@ const struct kernel_param_ops param_ops_bool_enable_only = { .set = param_set_bool_enable_only, .get = param_get_bool, }; +EXPORT_SYMBOL_GPL(param_ops_bool_enable_only); /* This one must be bool. */ int param_set_invbool(const char *val, const struct kernel_param *kp)