From: kernel test robot <lkp@intel.com>
To: AThomas63 <andrew.thomas@touchnetix.com>, dmitry.torokhov@gmail.com
Cc: oe-kbuild-all@lists.linux.dev, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org, mark.satterthwaite@touchnetix.com,
andrew.thomas@touchnetix.com, m.felsch@pengutronix.de,
kamel.bouhara@bootlin.com
Subject: Re: [PATCH 1/1] Adding support for aXiom touchscreen controller
Date: Fri, 23 Jan 2026 03:03:43 +0800 [thread overview]
Message-ID: <202601230252.ZlyhNYe2-lkp@intel.com> (raw)
In-Reply-To: <20260122124819.273188-2-andrew.thomas@touchnetix.com>
Hi AThomas63,
kernel test robot noticed the following build errors:
[auto build test ERROR on dtor-input/next]
[also build test ERROR on dtor-input/for-linus hid/for-next linus/master v6.19-rc6 next-20260122]
[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/AThomas63/Adding-support-for-aXiom-touchscreen-controller/20260122-212452
base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
patch link: https://lore.kernel.org/r/20260122124819.273188-2-andrew.thomas%40touchnetix.com
patch subject: [PATCH 1/1] Adding support for aXiom touchscreen controller
config: sh-randconfig-r072-20260123 (https://download.01.org/0day-ci/archive/20260123/202601230252.ZlyhNYe2-lkp@intel.com/config)
compiler: sh4-linux-gcc (GCC) 14.3.0
smatch version: v0.5.0-8994-gd50c5a4c
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260123/202601230252.ZlyhNYe2-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/202601230252.ZlyhNYe2-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/input/touchscreen/axiom_core.c: In function 'axiom_unpack_device_info':
>> drivers/input/touchscreen/axiom_core.c:110:27: error: implicit declaration of function 'FIELD_GET' [-Wimplicit-function-declaration]
110 | info->device_id = FIELD_GET(AX_DEV_ID_MASK, w);
| ^~~~~~~~~
vim +/FIELD_GET +110 drivers/input/touchscreen/axiom_core.c
103
104 static void axiom_unpack_device_info(const u8 *buf,
105 struct axiom_device_info *info)
106 {
107 u16 w;
108
109 w = get_unaligned_le16(buf);
> 110 info->device_id = FIELD_GET(AX_DEV_ID_MASK, w);
111 info->mode = !!(w & AX_MODE);
112
113 w = get_unaligned_le16(buf + 2);
114 info->runtime_fw_rev_minor = FIELD_GET(AX_FW_REV_MINOR_MASK, w);
115 info->runtime_fw_rev_major = FIELD_GET(AX_FW_REV_MAJOR_MASK, w);
116
117 w = get_unaligned_le16(buf + 4);
118 info->device_build_variant = FIELD_GET(AX_VARIANT_MASK, w);
119 info->runtime_fw_status = !!(w & AX_FW_STATUS);
120 info->tcp_revision = FIELD_GET(AX_TCP_REV_MASK, w);
121
122 w = get_unaligned_le16(buf + 6);
123 info->bootloader_fw_rev_minor = FIELD_GET(AX_BOOT_REV_MINOR_MASK, w);
124 info->bootloader_fw_rev_major = FIELD_GET(AX_BOOT_REV_MAJOR_MASK, w);
125
126 info->jedec_id = get_unaligned_le16(buf + 8);
127
128 w = get_unaligned_le16(buf + 10);
129 info->num_usages = FIELD_GET(AX_NUM_USAGES_MASK, w);
130 info->silicon_revision = FIELD_GET(AX_SILICON_REV_MASK, w);
131 info->runtime_fw_rev_patch = FIELD_GET(AX_RUNTIME_FW_PATCH_MASK, w);
132 }
133
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-22 19:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-22 12:48 [PATCH 0/1] Input: Add TouchNetix aXiom touchscreen driver AThomas63
2026-01-22 12:48 ` [PATCH 1/1] Adding support for aXiom touchscreen controller AThomas63
2026-01-22 19:03 ` kernel test robot [this message]
2026-01-22 22:09 ` Marco Felsch
2026-01-26 16:27 ` Andrew Thomas
2026-01-23 9:29 ` Krzysztof Kozlowski
2026-01-22 14:40 ` [PATCH v1] dt-bindings: input: Add TouchNetix aXiom touchscreen driver AThomas63
2026-01-23 7:27 ` Krzysztof Kozlowski
2026-01-23 14:24 ` Marco Felsch
2026-01-26 16:28 ` Andrew Thomas
2026-01-23 7:27 ` Krzysztof Kozlowski
2026-01-22 21:41 ` [PATCH 0/1] Input: " Marco Felsch
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=202601230252.ZlyhNYe2-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrew.thomas@touchnetix.com \
--cc=dmitry.torokhov@gmail.com \
--cc=kamel.bouhara@bootlin.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=m.felsch@pengutronix.de \
--cc=mark.satterthwaite@touchnetix.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox