From: kernel test robot <lkp@intel.com>
To: Denis Benato <benato.denis96@gmail.com>, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, hdegoede@redhat.com,
ilpo.jarvinen@linux.intel.com,
platform-driver-x86@vger.kernel.org, mario.limonciello@amd.com,
"Luke D . Jones" <luke@ljones.dev>,
Denis Benato <benato.denis96@gmail.com>
Subject: Re: [PATCH v10 2/8] platform/x86: asus-armoury: move existing tunings to asus-armoury module
Date: Thu, 7 Aug 2025 23:48:44 +0800 [thread overview]
Message-ID: <202508072334.8n7nwIG3-lkp@intel.com> (raw)
In-Reply-To: <20250806135319.1205762-3-benato.denis96@gmail.com>
Hi Denis,
kernel test robot noticed the following build warnings:
[auto build test WARNING on linus/master]
[also build test WARNING on v6.16 next-20250807]
[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/Denis-Benato/platform-x86-asus-wmi-export-symbols-used-for-read-write-WMI/20250806-215748
base: linus/master
patch link: https://lore.kernel.org/r/20250806135319.1205762-3-benato.denis96%40gmail.com
patch subject: [PATCH v10 2/8] platform/x86: asus-armoury: move existing tunings to asus-armoury module
config: i386-allmodconfig (https://download.01.org/0day-ci/archive/20250807/202508072334.8n7nwIG3-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14+deb12u1) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250807/202508072334.8n7nwIG3-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/202508072334.8n7nwIG3-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from drivers/platform/x86/asus-armoury.c:28:
>> include/linux/platform_data/x86/asus-wmi.h:199:35: warning: 'asus_use_hid_led_dmi_ids' defined but not used [-Wunused-const-variable=]
199 | static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
| ^~~~~~~~~~~~~~~~~~~~~~~~
vim +/asus_use_hid_led_dmi_ids +199 include/linux/platform_data/x86/asus-wmi.h
ffb6ce7086ee2d Daniel Drake 2018-10-09 196
a720dee5e03923 Luke D. Jones 2024-07-13 197 /* To be used by both hid-asus and asus-wmi to determine which controls kbd_brightness */
9d3b02ad9b1d1f Luke D. Jones 2025-08-06 198 #if IS_REACHABLE(CONFIG_ASUS_WMI) || IS_REACHABLE(CONFIG_HID_ASUS)
a720dee5e03923 Luke D. Jones 2024-07-13 @199 static const struct dmi_system_id asus_use_hid_led_dmi_ids[] = {
a720dee5e03923 Luke D. Jones 2024-07-13 200 {
a720dee5e03923 Luke D. Jones 2024-07-13 201 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 202 DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Zephyrus"),
a720dee5e03923 Luke D. Jones 2024-07-13 203 },
a720dee5e03923 Luke D. Jones 2024-07-13 204 },
a720dee5e03923 Luke D. Jones 2024-07-13 205 {
a720dee5e03923 Luke D. Jones 2024-07-13 206 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 207 DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Strix"),
a720dee5e03923 Luke D. Jones 2024-07-13 208 },
a720dee5e03923 Luke D. Jones 2024-07-13 209 },
a720dee5e03923 Luke D. Jones 2024-07-13 210 {
a720dee5e03923 Luke D. Jones 2024-07-13 211 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 212 DMI_MATCH(DMI_PRODUCT_FAMILY, "ROG Flow"),
a720dee5e03923 Luke D. Jones 2024-07-13 213 },
a720dee5e03923 Luke D. Jones 2024-07-13 214 },
53078a736fbc60 Luke D. Jones 2025-01-11 215 {
53078a736fbc60 Luke D. Jones 2025-01-11 216 .matches = {
53078a736fbc60 Luke D. Jones 2025-01-11 217 DMI_MATCH(DMI_PRODUCT_FAMILY, "ProArt P16"),
53078a736fbc60 Luke D. Jones 2025-01-11 218 },
53078a736fbc60 Luke D. Jones 2025-01-11 219 },
a720dee5e03923 Luke D. Jones 2024-07-13 220 {
a720dee5e03923 Luke D. Jones 2024-07-13 221 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 222 DMI_MATCH(DMI_BOARD_NAME, "GA403U"),
a720dee5e03923 Luke D. Jones 2024-07-13 223 },
a720dee5e03923 Luke D. Jones 2024-07-13 224 },
a720dee5e03923 Luke D. Jones 2024-07-13 225 {
a720dee5e03923 Luke D. Jones 2024-07-13 226 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 227 DMI_MATCH(DMI_BOARD_NAME, "GU605M"),
a720dee5e03923 Luke D. Jones 2024-07-13 228 },
a720dee5e03923 Luke D. Jones 2024-07-13 229 },
a720dee5e03923 Luke D. Jones 2024-07-13 230 {
a720dee5e03923 Luke D. Jones 2024-07-13 231 .matches = {
a720dee5e03923 Luke D. Jones 2024-07-13 232 DMI_MATCH(DMI_BOARD_NAME, "RC71L"),
a720dee5e03923 Luke D. Jones 2024-07-13 233 },
a720dee5e03923 Luke D. Jones 2024-07-13 234 },
a720dee5e03923 Luke D. Jones 2024-07-13 235 { },
a720dee5e03923 Luke D. Jones 2024-07-13 236 };
9d3b02ad9b1d1f Luke D. Jones 2025-08-06 237 #endif
a720dee5e03923 Luke D. Jones 2024-07-13 238
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-08-07 15:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-06 13:53 [PATCH v10 0/8] platform/x86: Add asus-armoury driver Denis Benato
2025-08-06 13:53 ` [PATCH v10 1/8] platform/x86: asus-wmi: export symbols used for read/write WMI Denis Benato
2025-08-06 13:53 ` [PATCH v10 2/8] platform/x86: asus-armoury: move existing tunings to asus-armoury module Denis Benato
2025-08-07 15:48 ` kernel test robot [this message]
2025-08-06 13:53 ` [PATCH v10 3/8] platform/x86: asus-armoury: add panel_hd_mode attribute Denis Benato
2025-08-06 13:53 ` [PATCH v10 4/8] platform/x86: asus-armoury: add apu-mem control support Denis Benato
2025-08-06 13:53 ` [PATCH v10 5/8] platform/x86: asus-armoury: add core count control Denis Benato
2025-08-06 13:53 ` [PATCH v10 6/8] platform/x86: asus-armoury: add screen auto-brightness toggle Denis Benato
2025-08-06 13:53 ` [PATCH v10 7/8] platform/x86: asus-wmi: deprecate bios features Denis Benato
2025-08-06 13:53 ` [PATCH v10 8/8] platform/x86: asus-armoury: add ppt_* and nv_* tuning knobs Denis Benato
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=202508072334.8n7nwIG3-lkp@intel.com \
--to=lkp@intel.com \
--cc=benato.denis96@gmail.com \
--cc=hdegoede@redhat.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luke@ljones.dev \
--cc=mario.limonciello@amd.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=platform-driver-x86@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox