All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Michael Nemanov <michael.nemanov@ti.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v4 17/17] wifi: cc33xx: Add Kconfig, Makefile
Date: Wed, 30 Oct 2024 22:11:04 +0800	[thread overview]
Message-ID: <202410302116.Z9Ut9ZJd-lkp@intel.com> (raw)
In-Reply-To: <20241029172354.4027886-18-michael.nemanov@ti.com>

Hi Michael,

kernel test robot noticed the following build warnings:

[auto build test WARNING on wireless-next/main]
[also build test WARNING on wireless/main net-next/main net/main robh/for-next linus/master v6.12-rc5 next-20241030]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Michael-Nemanov/dt-bindings-net-wireless-cc33xx-Add-ti-cc33xx-yaml/20241030-013401
base:   https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git main
patch link:    https://lore.kernel.org/r/20241029172354.4027886-18-michael.nemanov%40ti.com
patch subject: [PATCH v4 17/17] wifi: cc33xx: Add Kconfig, Makefile
config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20241030/202410302116.Z9Ut9ZJd-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241030/202410302116.Z9Ut9ZJd-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202410302116.Z9Ut9ZJd-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/net/wireless/ti/cc33xx/event.c: In function 'deffer_event':
>> drivers/net/wireless/ti/cc33xx/event.c:91:14: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
      91 |         bool ret;
         |              ^~~

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for GET_FREE_REGION
   Depends on [n]: SPARSEMEM [=n]
   Selected by [m]:
   - RESOURCE_KUNIT_TEST [=m] && RUNTIME_TESTING_MENU [=y] && KUNIT [=m]


vim +/ret +91 drivers/net/wireless/ti/cc33xx/event.c

a34749533e99fd Michael Nemanov 2024-10-29   86  
a34749533e99fd Michael Nemanov 2024-10-29   87  void deffer_event(struct cc33xx *cc,
a34749533e99fd Michael Nemanov 2024-10-29   88  		  const void *event_payload, size_t event_length)
a34749533e99fd Michael Nemanov 2024-10-29   89  {
a34749533e99fd Michael Nemanov 2024-10-29   90  	struct event_node *event_node;
a34749533e99fd Michael Nemanov 2024-10-29  @91  	bool ret;
a34749533e99fd Michael Nemanov 2024-10-29   92  
a34749533e99fd Michael Nemanov 2024-10-29   93  	if (WARN_ON(event_length != sizeof(event_node->event_data)))
a34749533e99fd Michael Nemanov 2024-10-29   94  		return;
a34749533e99fd Michael Nemanov 2024-10-29   95  
a34749533e99fd Michael Nemanov 2024-10-29   96  	event_node = kzalloc(sizeof(*event_node), GFP_KERNEL);
a34749533e99fd Michael Nemanov 2024-10-29   97  	if (WARN_ON(!event_node))
a34749533e99fd Michael Nemanov 2024-10-29   98  		return;
a34749533e99fd Michael Nemanov 2024-10-29   99  
a34749533e99fd Michael Nemanov 2024-10-29  100  	memcpy(&event_node->event_data,
a34749533e99fd Michael Nemanov 2024-10-29  101  	       event_payload, sizeof(event_node->event_data));
a34749533e99fd Michael Nemanov 2024-10-29  102  
a34749533e99fd Michael Nemanov 2024-10-29  103  	llist_add(&event_node->node, &cc->event_list);
a34749533e99fd Michael Nemanov 2024-10-29  104  	ret = queue_work(cc->freezable_wq, &cc->irq_deferred_work);
a34749533e99fd Michael Nemanov 2024-10-29  105  }
a34749533e99fd Michael Nemanov 2024-10-29  106  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

      parent reply	other threads:[~2024-10-30 14:11 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-29 17:23 [PATCH v4 00/17] wifi: cc33xx: Add driver for new TI CC33xx wireless device family Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 01/17] dt-bindings: net: wireless: cc33xx: Add ti,cc33xx.yaml Michael Nemanov
2024-10-29 17:28   ` Krzysztof Kozlowski
2024-10-30 10:59     ` Nemanov, Michael
2024-10-30 11:09       ` Krzysztof Kozlowski
2024-10-30 12:14         ` Nemanov, Michael
2024-10-30 14:01           ` Krzysztof Kozlowski
2024-10-29 17:23 ` [PATCH v4 02/17] wifi: cc33xx: Add cc33xx.h, cc33xx_i.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 03/17] wifi: cc33xx: Add debug.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 04/17] wifi: cc33xx: Add sdio.c, io.c, io.h Michael Nemanov
2024-10-29 17:34   ` Krzysztof Kozlowski
2024-11-03 13:33     ` Nemanov, Michael
2024-10-29 17:23 ` [PATCH v4 05/17] wifi: cc33xx: Add cmd.c, cmd.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 06/17] wifi: cc33xx: Add acx.c, acx.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 07/17] wifi: cc33xx: Add event.c, event.h Michael Nemanov
2024-11-02 13:12   ` Simon Horman
2024-10-29 17:23 ` [PATCH v4 08/17] wifi: cc33xx: Add boot.c, boot.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 09/17] wifi: cc33xx: Add main.c Michael Nemanov
2024-11-02 13:25   ` Simon Horman
2024-11-03 12:55     ` Nemanov, Michael
2024-10-29 17:23 ` [PATCH v4 10/17] wifi: cc33xx: Add rx.c, rx.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 11/17] wifi: cc33xx: Add tx.c, tx.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 12/17] wifi: cc33xx: Add init.c, init.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 13/17] wifi: cc33xx: Add scan.c, scan.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 14/17] wifi: cc33xx: Add conf.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 15/17] wifi: cc33xx: Add ps.c, ps.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 16/17] wifi: cc33xx: Add testmode.c, testmode.h Michael Nemanov
2024-10-29 17:23 ` [PATCH v4 17/17] wifi: cc33xx: Add Kconfig, Makefile Michael Nemanov
2024-10-29 17:55   ` Krzysztof Kozlowski
2024-10-30 14:11   ` kernel test robot [this message]

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=202410302116.Z9Ut9ZJd-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=michael.nemanov@ti.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.