All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Ashok Raj Nagarajan <arnagara@qti.qualcomm.com>
Cc: kbuild-all@01.org, ath10k@lists.infradead.org,
	linux-wireless@vger.kernel.org, arnagara@codeaurora.org,
	Ashok Raj Nagarajan <arnagara@qti.qualcomm.com>
Subject: Re: [PATCH] ath10k: add support for controlling tx power to a station
Date: Wed, 15 Jun 2016 02:48:38 +0800	[thread overview]
Message-ID: <201606150222.ywY7xycR%fengguang.wu@intel.com> (raw)
In-Reply-To: <1465925914-6404-1-git-send-email-arnagara@qti.qualcomm.com>

[-- Attachment #1: Type: text/plain, Size: 2849 bytes --]

Hi,

[auto build test WARNING on ath6kl/ath-next]
[also build test WARNING on v4.7-rc3 next-20160614]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Ashok-Raj-Nagarajan/ath10k-add-support-for-controlling-tx-power-to-a-station/20160615-014225
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: m68k-allyesconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 4.9.0
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=m68k 

All warnings (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/mac.c: In function 'ath10k_sta_set_txpwr':
   drivers/net/wireless/ath/ath10k/mac.c:5836:13: error: 'struct ieee80211_sta' has no member named 'txpwr'
     txpwr = sta->txpwr;
                ^
   drivers/net/wireless/ath/ath10k/mac.c: At top level:
   drivers/net/wireless/ath/ath10k/mac.c:7399:2: error: unknown field 'sta_set_txpwr' specified in initializer
     .sta_set_txpwr   = ath10k_sta_set_txpwr,
     ^
>> drivers/net/wireless/ath/ath10k/mac.c:7399:2: warning: initialization from incompatible pointer type
   drivers/net/wireless/ath/ath10k/mac.c:7399:2: warning: (near initialization for 'ath10k_ops.sta_pre_rcu_remove')

vim +7399 drivers/net/wireless/ath/ath10k/mac.c

  7383	
  7384	static const struct ieee80211_ops ath10k_ops = {
  7385		.tx				= ath10k_mac_op_tx,
  7386		.wake_tx_queue			= ath10k_mac_op_wake_tx_queue,
  7387		.start				= ath10k_start,
  7388		.stop				= ath10k_stop,
  7389		.config				= ath10k_config,
  7390		.add_interface			= ath10k_add_interface,
  7391		.remove_interface		= ath10k_remove_interface,
  7392		.configure_filter		= ath10k_configure_filter,
  7393		.bss_info_changed		= ath10k_bss_info_changed,
  7394		.hw_scan			= ath10k_hw_scan,
  7395		.cancel_hw_scan			= ath10k_cancel_hw_scan,
  7396		.set_key			= ath10k_set_key,
  7397		.set_default_unicast_key        = ath10k_set_default_unicast_key,
  7398		.sta_state			= ath10k_sta_state,
> 7399		.sta_set_txpwr			= ath10k_sta_set_txpwr,
  7400		.conf_tx			= ath10k_conf_tx,
  7401		.remain_on_channel		= ath10k_remain_on_channel,
  7402		.cancel_remain_on_channel	= ath10k_cancel_remain_on_channel,
  7403		.set_rts_threshold		= ath10k_set_rts_threshold,
  7404		.set_frag_threshold		= ath10k_mac_op_set_frag_threshold,
  7405		.flush				= ath10k_flush,
  7406		.tx_last_beacon			= ath10k_tx_last_beacon,
  7407		.set_antenna			= ath10k_set_antenna,

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 36318 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: Ashok Raj Nagarajan <arnagara@qti.qualcomm.com>
Cc: arnagara@codeaurora.org, linux-wireless@vger.kernel.org,
	kbuild-all@01.org, ath10k@lists.infradead.org
Subject: Re: [PATCH] ath10k: add support for controlling tx power to a station
Date: Wed, 15 Jun 2016 02:48:38 +0800	[thread overview]
Message-ID: <201606150222.ywY7xycR%fengguang.wu@intel.com> (raw)
In-Reply-To: <1465925914-6404-1-git-send-email-arnagara@qti.qualcomm.com>

[-- Attachment #1: Type: text/plain, Size: 2849 bytes --]

Hi,

[auto build test WARNING on ath6kl/ath-next]
[also build test WARNING on v4.7-rc3 next-20160614]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Ashok-Raj-Nagarajan/ath10k-add-support-for-controlling-tx-power-to-a-station/20160615-014225
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: m68k-allyesconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 4.9.0
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=m68k 

All warnings (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/mac.c: In function 'ath10k_sta_set_txpwr':
   drivers/net/wireless/ath/ath10k/mac.c:5836:13: error: 'struct ieee80211_sta' has no member named 'txpwr'
     txpwr = sta->txpwr;
                ^
   drivers/net/wireless/ath/ath10k/mac.c: At top level:
   drivers/net/wireless/ath/ath10k/mac.c:7399:2: error: unknown field 'sta_set_txpwr' specified in initializer
     .sta_set_txpwr   = ath10k_sta_set_txpwr,
     ^
>> drivers/net/wireless/ath/ath10k/mac.c:7399:2: warning: initialization from incompatible pointer type
   drivers/net/wireless/ath/ath10k/mac.c:7399:2: warning: (near initialization for 'ath10k_ops.sta_pre_rcu_remove')

vim +7399 drivers/net/wireless/ath/ath10k/mac.c

  7383	
  7384	static const struct ieee80211_ops ath10k_ops = {
  7385		.tx				= ath10k_mac_op_tx,
  7386		.wake_tx_queue			= ath10k_mac_op_wake_tx_queue,
  7387		.start				= ath10k_start,
  7388		.stop				= ath10k_stop,
  7389		.config				= ath10k_config,
  7390		.add_interface			= ath10k_add_interface,
  7391		.remove_interface		= ath10k_remove_interface,
  7392		.configure_filter		= ath10k_configure_filter,
  7393		.bss_info_changed		= ath10k_bss_info_changed,
  7394		.hw_scan			= ath10k_hw_scan,
  7395		.cancel_hw_scan			= ath10k_cancel_hw_scan,
  7396		.set_key			= ath10k_set_key,
  7397		.set_default_unicast_key        = ath10k_set_default_unicast_key,
  7398		.sta_state			= ath10k_sta_state,
> 7399		.sta_set_txpwr			= ath10k_sta_set_txpwr,
  7400		.conf_tx			= ath10k_conf_tx,
  7401		.remain_on_channel		= ath10k_remain_on_channel,
  7402		.cancel_remain_on_channel	= ath10k_cancel_remain_on_channel,
  7403		.set_rts_threshold		= ath10k_set_rts_threshold,
  7404		.set_frag_threshold		= ath10k_mac_op_set_frag_threshold,
  7405		.flush				= ath10k_flush,
  7406		.tx_last_beacon			= ath10k_tx_last_beacon,
  7407		.set_antenna			= ath10k_set_antenna,

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 36318 bytes --]

[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

  parent reply	other threads:[~2016-06-14 18:49 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-14 17:38 [PATCH] ath10k: add support for controlling tx power to a station Ashok Raj Nagarajan
2016-06-14 17:38 ` Ashok Raj Nagarajan
2016-06-14 18:29 ` kbuild test robot
2016-06-14 18:29   ` kbuild test robot
2016-06-16 14:08   ` Valo, Kalle
2016-06-16 14:08     ` Valo, Kalle
2016-06-14 18:48 ` kbuild test robot [this message]
2016-06-14 18:48   ` kbuild test robot
2016-07-18 20:08 ` Kalle Valo
2016-07-18 20:08   ` Kalle Valo
2016-09-28 10:14 ` Kalle Valo
2016-09-28 10:14   ` Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201606150222.ywY7xycR%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=arnagara@codeaurora.org \
    --cc=arnagara@qti.qualcomm.com \
    --cc=ath10k@lists.infradead.org \
    --cc=kbuild-all@01.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.