From patchwork Thu Oct 22 00:58:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 7461631 X-Patchwork-Delegate: kvalo@adurom.com 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 BD6339F1C3 for ; Thu, 22 Oct 2015 01:03:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0BBE1208C2 for ; Thu, 22 Oct 2015 01:03:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1E0D8208AC for ; Thu, 22 Oct 2015 01:03:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756116AbbJVBDl (ORCPT ); Wed, 21 Oct 2015 21:03:41 -0400 Received: from mga01.intel.com ([192.55.52.88]:51409 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753586AbbJVBDl (ORCPT ); Wed, 21 Oct 2015 21:03:41 -0400 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 21 Oct 2015 18:03:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,179,1444719600"; d="scan'208";a="816603398" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga001.fm.intel.com with ESMTP; 21 Oct 2015 18:03:39 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1Zp4Hx-000H0F-3e; Thu, 22 Oct 2015 09:03:29 +0800 Date: Thu, 22 Oct 2015 08:58:59 +0800 From: kbuild test robot To: greearb@candelatech.com Cc: kbuild-all@01.org, linux-wireless@vger.kernel.org, ath6kl@lists.infradead.org, Ben Greear Subject: [RFC PATCH] ath6k: ath6k_ethtool_ops can be static Message-ID: <20151022005858.GA48311@xian> References: <201510220815.XZd9VwIK%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1445471597-26091-2-git-send-email-greearb@candelatech.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false 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.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 Signed-off-by: Fengguang Wu --- cfg80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/wireless/ath/ath6kl/cfg80211.c index c6eb2fd..e8dbe9b 100644 --- a/drivers/net/wireless/ath/ath6kl/cfg80211.c +++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c @@ -3747,7 +3747,7 @@ static void ath6k_get_strings(struct net_device *dev, u32 sset, u8 *data) } } -const struct ethtool_ops ath6k_ethtool_ops = { +static const struct ethtool_ops ath6k_ethtool_ops = { .get_drvinfo = cfg80211_get_drvinfo, .get_link = ethtool_op_get_link, .get_strings = ath6k_get_strings,