lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202409220913.WEYnCgBL-lkp@intel.com>
Date: Sun, 22 Sep 2024 09:33:32 +0800
From: kernel test robot <lkp@...el.com>
To: "Luke D. Jones" <luke@...nes.dev>, platform-driver-x86@...r.kernel.org
Cc: oe-kbuild-all@...ts.linux.dev, linux-kernel@...r.kernel.org,
	hdegoede@...hat.com, ilpo.jarvinen@...ux.intel.com,
	corentin.chary@...il.com, "Luke D. Jones" <luke@...nes.dev>
Subject: Re: [PATCH v3 1/5] platform/x86: asus-armoury: move existing tunings
 to asus-armoury module

Hi Luke,

kernel test robot noticed the following build warnings:

[auto build test WARNING on next-20240918]
[also build test WARNING on v6.11]
[cannot apply to linus/master v6.11 v6.11-rc7 v6.11-rc6]
[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/Luke-D-Jones/platform-x86-asus-armoury-move-existing-tunings-to-asus-armoury-module/20240918-174540
base:   next-20240918
patch link:    https://lore.kernel.org/r/20240918094250.82430-2-luke%40ljones.dev
patch subject: [PATCH v3 1/5] platform/x86: asus-armoury: move existing tunings to asus-armoury module
config: i386-allyesconfig (https://download.01.org/0day-ci/archive/20240922/202409220913.WEYnCgBL-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240922/202409220913.WEYnCgBL-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@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202409220913.WEYnCgBL-lkp@intel.com/

All warnings (new ones prefixed by >>):

   In file included from drivers/platform/x86/asus-armoury.c:23:
>> include/linux/platform_data/x86/asus-wmi.h:182:35: warning: 'asus_use_hid_led_dmi_ids' defined but not used [-Wunused-const-variable=]
     182 | static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
         |                                   ^~~~~~~~~~~~~~~~~~~~~~~~
--
   In file included from drivers/platform/x86/asus-wmi.c:45:
>> drivers/platform/x86/asus-wmi.h:89:35: warning: 'asus_rog_ally_device' defined but not used [-Wunused-const-variable=]
      89 | static const struct dmi_system_id asus_rog_ally_device[] = {
         |                                   ^~~~~~~~~~~~~~~~~~~~

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for GET_FREE_REGION
   Depends on [n]: SPARSEMEM [=n]
   Selected by [y]:
   - RESOURCE_KUNIT_TEST [=y] && RUNTIME_TESTING_MENU [=y] && KUNIT [=y]
   WARNING: unmet direct dependencies detected for OMAP2PLUS_MBOX
   Depends on [n]: MAILBOX [=y] && (ARCH_OMAP2PLUS || ARCH_K3)
   Selected by [y]:
   - TI_K3_M4_REMOTEPROC [=y] && REMOTEPROC [=y] && (ARCH_K3 || COMPILE_TEST [=y])


vim +/asus_use_hid_led_dmi_ids +182 include/linux/platform_data/x86/asus-wmi.h

ffb6ce7086ee2d Daniel Drake  2018-10-09  180  
a720dee5e03923 Luke D. Jones 2024-07-13  181  /* To be used by both hid-asus and asus-wmi to determine which controls kbd_brightness */
a720dee5e03923 Luke D. Jones 2024-07-13 @182  static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
a720dee5e03923 Luke D. Jones 2024-07-13  183  	{
a720dee5e03923 Luke D. Jones 2024-07-13  184  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  185  			DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Zephyrus"),
a720dee5e03923 Luke D. Jones 2024-07-13  186  		},
a720dee5e03923 Luke D. Jones 2024-07-13  187  	},
a720dee5e03923 Luke D. Jones 2024-07-13  188  	{
a720dee5e03923 Luke D. Jones 2024-07-13  189  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  190  			DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Strix"),
a720dee5e03923 Luke D. Jones 2024-07-13  191  		},
a720dee5e03923 Luke D. Jones 2024-07-13  192  	},
a720dee5e03923 Luke D. Jones 2024-07-13  193  	{
a720dee5e03923 Luke D. Jones 2024-07-13  194  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  195  			DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Flow"),
a720dee5e03923 Luke D. Jones 2024-07-13  196  		},
a720dee5e03923 Luke D. Jones 2024-07-13  197  	},
a720dee5e03923 Luke D. Jones 2024-07-13  198  	{
a720dee5e03923 Luke D. Jones 2024-07-13  199  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  200  			DMI_MATCH(DMI_BOARD_NAME, "GA403U"),
a720dee5e03923 Luke D. Jones 2024-07-13  201  		},
a720dee5e03923 Luke D. Jones 2024-07-13  202  	},
a720dee5e03923 Luke D. Jones 2024-07-13  203  	{
a720dee5e03923 Luke D. Jones 2024-07-13  204  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  205  			DMI_MATCH(DMI_BOARD_NAME, "GU605M"),
a720dee5e03923 Luke D. Jones 2024-07-13  206  		},
a720dee5e03923 Luke D. Jones 2024-07-13  207  	},
a720dee5e03923 Luke D. Jones 2024-07-13  208  	{
a720dee5e03923 Luke D. Jones 2024-07-13  209  		.matches = {
a720dee5e03923 Luke D. Jones 2024-07-13  210  			DMI_MATCH(DMI_BOARD_NAME, "RC71L"),
a720dee5e03923 Luke D. Jones 2024-07-13  211  		},
a720dee5e03923 Luke D. Jones 2024-07-13  212  	},
a720dee5e03923 Luke D. Jones 2024-07-13  213  	{ },
a720dee5e03923 Luke D. Jones 2024-07-13  214  };
a720dee5e03923 Luke D. Jones 2024-07-13  215  

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ