All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Benjamin Berg <benjamin@sipsolutions.net>
Cc: kbuild-all@01.org, Kalle Valo <kvalo@qca.qualcomm.com>,
	linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
	Sebastian Gottschall <s.gottschall@dd-wrt.com>,
	Benjamin Berg <benjamin@sipsolutions.net>,
	Simon Wunderlich <sw@simonwunderlich.de>,
	Mathias Kretschmer <mathias.kretschmer@fit.fraunhofer.de>
Subject: Re: [PATCH] ath10k: Allow setting coverage class
Date: Wed, 27 Jul 2016 18:28:08 +0800	[thread overview]
Message-ID: <201607271844.4Ha6HzJ2%fengguang.wu@intel.com> (raw)
In-Reply-To: <1469608424-11370-1-git-send-email-benjamin@sipsolutions.net>

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

Hi,

[auto build test ERROR on ath6kl/ath-next]
[also build test ERROR on next-20160727]
[cannot apply to v4.7]
[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/Benjamin-Berg/ath10k-Allow-setting-coverage-class/20160727-163809
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: sparc64-allyesconfig (attached as .config)
compiler: sparc64-linux-gnu-gcc (Debian 5.4.0-6) 5.4.0 20160609
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=sparc64 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/wmi.c: In function 'ath10k_ath9k_set_pdev_coverage_class':
>> drivers/net/wireless/ath/ath10k/wmi.c:3176:2: error: expected ';' before 'timeout'
     timeout = timeout & ATH9K_MAC_TIME_OUT_ACK;
     ^
   drivers/net/wireless/ath/ath10k/wmi.c:3181:2: error: expected ';' before 'timeout'
     timeout = timeout >> ATH9K_MAC_TIME_OUT_CTS_S;
     ^
   drivers/net/wireless/ath/ath10k/wmi.c:3185:2: error: expected ';' before 'timeout'
     timeout = timeout & ATH9K_MAC_TIME_OUT_CTS;
     ^

vim +3176 drivers/net/wireless/ath/ath10k/wmi.c

  3170		/* Update ack timeout (lower halfword). */
  3171		timeout = (timeout_reg & ATH9K_MAC_TIME_OUT_ACK);
  3172		timeout = timeout >> ATH9K_MAC_TIME_OUT_ACK_S;
  3173		timeout += 3 * value * counters_freq_mhz;
  3174		timeout = min_t(u32, timeout, ATH9K_MAC_TIME_OUT_MAX);
  3175		timeout = (timeout << ATH9K_MAC_TIME_OUT_ACK_S)
> 3176		timeout = timeout & ATH9K_MAC_TIME_OUT_ACK;
  3177		timeout_reg = (timeout_reg & ~ATH9K_MAC_TIME_OUT_ACK) | timeout;
  3178	
  3179		/* Update cts timeout (upper halfword). */

---
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: 46490 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: Benjamin Berg <benjamin@sipsolutions.net>
Cc: Simon Wunderlich <sw@simonwunderlich.de>,
	linux-wireless@vger.kernel.org,
	Sebastian Gottschall <s.gottschall@dd-wrt.com>,
	Kalle Valo <kvalo@qca.qualcomm.com>,
	ath10k@lists.infradead.org, kbuild-all@01.org,
	Mathias Kretschmer <mathias.kretschmer@fit.fraunhofer.de>
Subject: Re: [PATCH] ath10k: Allow setting coverage class
Date: Wed, 27 Jul 2016 18:28:08 +0800	[thread overview]
Message-ID: <201607271844.4Ha6HzJ2%fengguang.wu@intel.com> (raw)
In-Reply-To: <1469608424-11370-1-git-send-email-benjamin@sipsolutions.net>

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

Hi,

[auto build test ERROR on ath6kl/ath-next]
[also build test ERROR on next-20160727]
[cannot apply to v4.7]
[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/Benjamin-Berg/ath10k-Allow-setting-coverage-class/20160727-163809
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git ath-next
config: sparc64-allyesconfig (attached as .config)
compiler: sparc64-linux-gnu-gcc (Debian 5.4.0-6) 5.4.0 20160609
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=sparc64 

All errors (new ones prefixed by >>):

   drivers/net/wireless/ath/ath10k/wmi.c: In function 'ath10k_ath9k_set_pdev_coverage_class':
>> drivers/net/wireless/ath/ath10k/wmi.c:3176:2: error: expected ';' before 'timeout'
     timeout = timeout & ATH9K_MAC_TIME_OUT_ACK;
     ^
   drivers/net/wireless/ath/ath10k/wmi.c:3181:2: error: expected ';' before 'timeout'
     timeout = timeout >> ATH9K_MAC_TIME_OUT_CTS_S;
     ^
   drivers/net/wireless/ath/ath10k/wmi.c:3185:2: error: expected ';' before 'timeout'
     timeout = timeout & ATH9K_MAC_TIME_OUT_CTS;
     ^

vim +3176 drivers/net/wireless/ath/ath10k/wmi.c

  3170		/* Update ack timeout (lower halfword). */
  3171		timeout = (timeout_reg & ATH9K_MAC_TIME_OUT_ACK);
  3172		timeout = timeout >> ATH9K_MAC_TIME_OUT_ACK_S;
  3173		timeout += 3 * value * counters_freq_mhz;
  3174		timeout = min_t(u32, timeout, ATH9K_MAC_TIME_OUT_MAX);
  3175		timeout = (timeout << ATH9K_MAC_TIME_OUT_ACK_S)
> 3176		timeout = timeout & ATH9K_MAC_TIME_OUT_ACK;
  3177		timeout_reg = (timeout_reg & ~ATH9K_MAC_TIME_OUT_ACK) | timeout;
  3178	
  3179		/* Update cts timeout (upper halfword). */

---
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: 46490 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-07-27 10:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-27  8:33 [PATCH] ath10k: Allow setting coverage class Benjamin Berg
2016-07-27  8:33 ` Benjamin Berg
2016-07-27  9:15 ` Michal Kazior
2016-07-27  9:15   ` Michal Kazior
2016-07-27 10:28 ` kbuild test robot [this message]
2016-07-27 10:28   ` kbuild test robot
2016-07-27 17:26 ` Ben Greear
2016-07-27 17:26   ` Ben Greear
2016-07-29 14:52   ` Benjamin Berg
2016-07-29 14:52     ` Benjamin Berg
2016-07-29 15:09     ` Ben Greear
2016-07-29 15:09       ` Ben Greear
2016-07-29 16:38       ` Sebastian Gottschall
2016-07-29 16:38         ` Sebastian Gottschall
2016-08-03  7:09       ` Michal Kazior
2016-08-03  7:09         ` Michal Kazior

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=201607271844.4Ha6HzJ2%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=ath10k@lists.infradead.org \
    --cc=benjamin@sipsolutions.net \
    --cc=kbuild-all@01.org \
    --cc=kvalo@qca.qualcomm.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=mathias.kretschmer@fit.fraunhofer.de \
    --cc=s.gottschall@dd-wrt.com \
    --cc=sw@simonwunderlich.de \
    /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.