From: kernel test robot <lkp@intel.com>
To: Sibi Sankar <sibi.sankar@oss.qualcomm.com>,
robh@kernel.org, krzk+dt@kernel.org, andersson@kernel.org,
konradybcio@kernel.org, bryan.odonoghue@linaro.org,
ilpo.jarvinen@linux.intel.com, hansg@kernel.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
conor+dt@kernel.org, linux-arm-msm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org,
Maya Matuszczyk <maccraft123mc@gmail.com>
Subject: Re: [PATCH V3 2/5] platform: arm64: Add driver for EC found on Qualcomm reference devices
Date: Tue, 10 Mar 2026 14:18:59 +0800 [thread overview]
Message-ID: <202603101317.ZR8NjiRC-lkp@intel.com> (raw)
In-Reply-To: <20260308233646.2318676-3-sibi.sankar@oss.qualcomm.com>
Hi Sibi,
kernel test robot noticed the following build errors:
[auto build test ERROR on a0ae2a256046c0c5d3778d1a194ff2e171f16e5f]
url: https://github.com/intel-lab-lkp/linux/commits/Sibi-Sankar/dt-bindings-embedded-controller-Add-EC-bindings-for-Qualcomm-reference-devices/20260309-074148
base: a0ae2a256046c0c5d3778d1a194ff2e171f16e5f
patch link: https://lore.kernel.org/r/20260308233646.2318676-3-sibi.sankar%40oss.qualcomm.com
patch subject: [PATCH V3 2/5] platform: arm64: Add driver for EC found on Qualcomm reference devices
config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20260310/202603101317.ZR8NjiRC-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260310/202603101317.ZR8NjiRC-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/202603101317.ZR8NjiRC-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/platform/arm64/qcom-hamoa-ec.c:170:37: error: call to undeclared function 'FIELD_GET'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
170 | cap->fan_cnt = max(EC_MAX_FAN_CNT, EC_THERMAL_FAN_CNT(resp[1]));
| ^
drivers/platform/arm64/qcom-hamoa-ec.c:56:33: note: expanded from macro 'EC_THERMAL_FAN_CNT'
56 | #define EC_THERMAL_FAN_CNT(x) (FIELD_GET(GENMASK(1, 0), (x)))
| ^
drivers/platform/arm64/qcom-hamoa-ec.c:171:18: error: call to undeclared function 'FIELD_GET'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
171 | cap->fan_type = EC_THERMAL_FAN_TYPE(resp[1]);
| ^
drivers/platform/arm64/qcom-hamoa-ec.c:57:34: note: expanded from macro 'EC_THERMAL_FAN_TYPE'
57 | #define EC_THERMAL_FAN_TYPE(x) (FIELD_GET(GENMASK(4, 2), (x)))
| ^
2 errors generated.
vim +/FIELD_GET +170 drivers/platform/arm64/qcom-hamoa-ec.c
137
138 /*
139 * EC Device Thermal Capabilities:
140 *
141 * Read Response:
142 * ----------------------------------------------------------------------
143 * | Offset | Name | Description |
144 * ----------------------------------------------------------------------
145 * | 0x00 | Byte count | Number of bytes in response |
146 * | | | (exluding byte count) |
147 * ----------------------------------------------------------------------
148 * | 0x02 (LSB) | EC Thermal | Bit 0-1: Number of fans |
149 * | 0x3 | Capabilities | Bit 2-4: Type of fan |
150 * | | | Bit 5-6: Reserved |
151 * | | | Bit 7: Data Valid/Invalid |
152 * | | | (Valid - 1, Invalid - 0)
153 * | | | Bit 8-15: Thermistor 0 - 7 presence |
154 * | | | (0 present, 1 absent) |
155 * ----------------------------------------------------------------------
156 *
157 */
158 static int qcom_ec_thermal_capabilities(struct device *dev)
159 {
160 struct i2c_client *client = to_i2c_client(dev);
161 struct qcom_ec *ec = i2c_get_clientdata(client);
162 struct qcom_ec_thermal_cap *cap = &ec->thermal_cap;
163 u8 resp[EC_THERMAL_CAP_RESP_LEN];
164 int ret;
165
166 ret = qcom_ec_read(ec, EC_THERMAL_CAP_CMD, EC_THERMAL_CAP_RESP_LEN, resp);
167 if (ret < 0)
168 return ret;
169
> 170 cap->fan_cnt = max(EC_MAX_FAN_CNT, EC_THERMAL_FAN_CNT(resp[1]));
171 cap->fan_type = EC_THERMAL_FAN_TYPE(resp[1]);
172 cap->thermistor_mask = EC_THERMAL_THERMISTOR_MASK(resp[2]);
173
174 dev_dbg(dev, "Fan count: %d Fan Type: %d Thermistor Mask: %d\n",
175 cap->fan_cnt, cap->fan_type, cap->thermistor_mask);
176
177 return 0;
178 }
179
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-03-10 6:19 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-08 23:36 [PATCH V3 0/5] Add driver for EC found on Qualcomm reference devices Sibi Sankar
2026-03-08 23:36 ` [PATCH V3 1/5] dt-bindings: embedded-controller: Add EC bindings for " Sibi Sankar
2026-03-09 7:23 ` Krzysztof Kozlowski
2026-03-09 11:35 ` Sibi Sankar
2026-03-09 21:06 ` Dmitry Baryshkov
2026-03-10 5:10 ` Sibi Sankar
2026-03-08 23:36 ` [PATCH V3 2/5] platform: arm64: Add driver for EC found on " Sibi Sankar
2026-03-09 9:03 ` Stephan Gerhold
2026-03-09 10:04 ` Sibi Sankar
2026-03-09 11:47 ` Konrad Dybcio
2026-03-09 11:55 ` Stephan Gerhold
2026-03-09 12:10 ` Konrad Dybcio
2026-03-10 4:58 ` Sibi Sankar
2026-03-16 10:33 ` Konrad Dybcio
2026-03-10 6:18 ` kernel test robot [this message]
2026-03-10 6:29 ` kernel test robot
2026-03-08 23:36 ` [PATCH V3 3/5] arm64: dts: qcom: glymur-crd: Add Embedded controller node Sibi Sankar
2026-03-08 23:36 ` [PATCH V3 4/5] arm64: dts: qcom: x1-crd: " Sibi Sankar
2026-03-09 7:25 ` Krzysztof Kozlowski
2026-03-09 9:03 ` Sibi Sankar
2026-03-09 9:09 ` Krzysztof Kozlowski
2026-03-09 10:51 ` Sibi Sankar
2026-03-09 10:53 ` Krzysztof Kozlowski
2026-03-09 11:48 ` Konrad Dybcio
2026-03-10 7:10 ` Krzysztof Kozlowski
2026-03-09 11:50 ` Sibi Sankar
2026-03-09 21:13 ` Dmitry Baryshkov
2026-03-10 5:11 ` Sibi Sankar
2026-03-10 9:45 ` Konrad Dybcio
2026-03-08 23:36 ` [PATCH V3 5/5] arm64: dts: qcom: hamoa-iot-evk: " Sibi Sankar
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=202603101317.ZR8NjiRC-lkp@intel.com \
--to=lkp@intel.com \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=hansg@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=maccraft123mc@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=platform-driver-x86@vger.kernel.org \
--cc=robh@kernel.org \
--cc=sibi.sankar@oss.qualcomm.com \
/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.