Hi Shree, kernel test robot noticed the following build errors: [auto build test ERROR on broonie-regulator/for-next] [also build test ERROR on next-20250117] [cannot apply to robh/for-next tmlind-omap/for-next linus/master v6.13-rc7] [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/Shree-Ramamoorthy/regulator-tps65215-Update-struct-names/20250114-071259 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next patch link: https://lore.kernel.org/r/20250113231018.125426-4-s-ramamoorthy%40ti.com patch subject: [PATCH v3 3/4] regulator: tps65215: Add support for TPS65215 regulator resources config: microblaze-allmodconfig (https://download.01.org/0day-ci/archive/20250119/202501191022.syh1x4cP-lkp@xxxxxxxxx/config) compiler: microblaze-linux-gcc (GCC) 14.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250119/202501191022.syh1x4cP-lkp@xxxxxxxxx/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@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202501191022.syh1x4cP-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/regulator/tps65219-regulator.c:261:44: error: 'TPS65215_LDO_2' undeclared here (not in a function); did you mean 'TPS65219_LDO_2'? 261 | TPS65219_REGULATOR("LDO2", "ldo2", TPS65215_LDO_2, | ^~~~~~~~~~~~~~ drivers/regulator/tps65219-regulator.c:99:43: note: in definition of macro 'TPS65219_REGULATOR' 99 | .id = _id, \ | ^~~ >> drivers/regulator/tps65219-regulator.c:263:28: error: 'TPS65215_REG_LDO2_VOUT' undeclared here (not in a function); did you mean 'TPS65219_REG_LDO2_VOUT'? 263 | TPS65215_REG_LDO2_VOUT, | ^~~~~~~~~~~~~~~~~~~~~~ drivers/regulator/tps65219-regulator.c:104:43: note: in definition of macro 'TPS65219_REGULATOR' 104 | .vsel_reg = _vr, \ | ^~~ >> drivers/regulator/tps65219-regulator.c:266:28: error: 'TPS65215_ENABLE_LDO2_EN_MASK' undeclared here (not in a function); did you mean 'TPS65219_ENABLE_LDO2_EN_MASK'? 266 | TPS65215_ENABLE_LDO2_EN_MASK, 0, 0, tps65215_ldo_2_range, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ drivers/regulator/tps65219-regulator.c:111:43: note: in definition of macro 'TPS65219_REGULATOR' 111 | .enable_mask = _em, \ | ^~~ >> drivers/regulator/tps65219-regulator.c:321:10: error: 'TPS65215' undeclared here (not in a function); did you mean 'TPS65219'? 321 | [TPS65215] = { | ^~~~~~~~ | TPS65219 >> drivers/regulator/tps65219-regulator.c:321:10: error: array index in initializer not of integer type drivers/regulator/tps65219-regulator.c:321:10: note: (near initialization for 'chip_info_table') drivers/regulator/tps65219-regulator.c: In function 'tps65219_regulator_probe': >> drivers/regulator/tps65219-regulator.c:348:14: error: variable 'chip' has initializer but incomplete type 348 | enum pmic_id chip = platform_get_device_id(pdev)->driver_data; | ^~~~~~~ >> drivers/regulator/tps65219-regulator.c:348:22: error: storage size of 'chip' isn't known 348 | enum pmic_id chip = platform_get_device_id(pdev)->driver_data; | ^~~~ drivers/regulator/tps65219-regulator.c:348:22: warning: unused variable 'chip' [-Wunused-variable] vim +261 drivers/regulator/tps65219-regulator.c 258 259 static const struct regulator_desc tps65215_regs[] = { 260 // TPS65215's LDO2 is the same as TPS65219's LDO3 > 261 TPS65219_REGULATOR("LDO2", "ldo2", TPS65215_LDO_2, 262 REGULATOR_VOLTAGE, ldos_3_4_ops, 64, > 263 TPS65215_REG_LDO2_VOUT, 264 TPS65219_BUCKS_LDOS_VOUT_VSET_MASK, 265 TPS65219_REG_ENABLE_CTRL, > 266 TPS65215_ENABLE_LDO2_EN_MASK, 0, 0, tps65215_ldo_2_range, 267 3, 0, 0, NULL, 0, 0), 268 }; 269 270 static const struct regulator_desc tps65219_regs[] = { 271 TPS65219_REGULATOR("LDO2", "ldo2", TPS65219_LDO_2, 272 REGULATOR_VOLTAGE, ldos_1_2_ops, 64, 273 TPS65219_REG_LDO2_VOUT, 274 TPS65219_BUCKS_LDOS_VOUT_VSET_MASK, 275 TPS65219_REG_ENABLE_CTRL, 276 TPS65219_ENABLE_LDO2_EN_MASK, 0, 0, tps65219_ldo_2_range, 277 2, 0, 0, NULL, 0, TPS65219_LDOS_BYP_CONFIG_MASK), 278 TPS65219_REGULATOR("LDO3", "ldo3", TPS65219_LDO_3, 279 REGULATOR_VOLTAGE, ldos_3_4_ops, 64, 280 TPS65219_REG_LDO3_VOUT, 281 TPS65219_BUCKS_LDOS_VOUT_VSET_MASK, 282 TPS65219_REG_ENABLE_CTRL, 283 TPS65219_ENABLE_LDO3_EN_MASK, 0, 0, tps65219_ldos_3_4_range, 284 3, 0, 0, NULL, 0, 0), 285 TPS65219_REGULATOR("LDO4", "ldo4", TPS65219_LDO_4, 286 REGULATOR_VOLTAGE, ldos_3_4_ops, 64, 287 TPS65219_REG_LDO4_VOUT, 288 TPS65219_BUCKS_LDOS_VOUT_VSET_MASK, 289 TPS65219_REG_ENABLE_CTRL, 290 TPS65219_ENABLE_LDO4_EN_MASK, 0, 0, tps65219_ldos_3_4_range, 291 3, 0, 0, NULL, 0, 0), 292 }; 293 294 static irqreturn_t tps65219_regulator_irq_handler(int irq, void *data) 295 { 296 struct tps65219_regulator_irq_data *irq_data = data; 297 298 if (irq_data->type->event_name[0] == '\0') { 299 /* This is the timeout interrupt no specific regulator */ 300 dev_err(irq_data->dev, 301 "System was put in shutdown due to timeout during an active or standby transition.\n"); 302 return IRQ_HANDLED; 303 } 304 305 regulator_notifier_call_chain(irq_data->rdev, 306 irq_data->type->event, NULL); 307 308 dev_err(irq_data->dev, "Error IRQ trap %s for %s\n", 309 irq_data->type->event_name, irq_data->type->regulator_name); 310 return IRQ_HANDLED; 311 } 312 313 struct tps65219_chip_data { 314 size_t rdesc_size; 315 size_t common_rdesc_size; 316 const struct regulator_desc *rdesc; 317 const struct regulator_desc *common_rdesc; 318 }; 319 320 static struct tps65219_chip_data chip_info_table[] = { > 321 [TPS65215] = { 322 .rdesc = tps65215_regs, 323 .rdesc_size = ARRAY_SIZE(tps65215_regs), 324 .common_rdesc = common_regs, 325 .common_rdesc_size = ARRAY_SIZE(common_regs), 326 }, 327 [TPS65219] = { 328 .rdesc = tps65219_regs, 329 .rdesc_size = ARRAY_SIZE(tps65219_regs), 330 .common_rdesc = common_regs, 331 .common_rdesc_size = ARRAY_SIZE(common_regs), 332 }, 333 }; 334 335 static int tps65219_regulator_probe(struct platform_device *pdev) 336 { 337 struct tps65219_regulator_irq_data *irq_data; 338 struct tps65219_regulator_irq_type *irq_type; 339 340 struct tps65219_chip_data *pmic; 341 struct regulator_dev *rdev; 342 int error; 343 int irq; 344 int i; 345 346 struct tps65219 *tps = dev_get_drvdata(pdev->dev.parent); 347 struct regulator_config config = { }; > 348 enum pmic_id chip = platform_get_device_id(pdev)->driver_data; 349 pmic = &chip_info_table[chip]; 350 351 config.dev = tps->dev; 352 config.driver_data = tps; 353 config.regmap = tps->regmap; 354 355 for (i = 0; i < pmic->common_rdesc_size; i++) { 356 rdev = devm_regulator_register(&pdev->dev, &pmic->common_rdesc[i], 357 &config); 358 if (IS_ERR(rdev)) 359 return dev_err_probe(tps->dev, PTR_ERR(rdev), 360 "Failed to register %s regulator\n", 361 pmic->common_rdesc[i].name); 362 } 363 364 for (i = 0; i < pmic->rdesc_size; i++) { 365 rdev = devm_regulator_register(&pdev->dev, &pmic->rdesc[i], 366 &config); 367 if (IS_ERR(rdev)) 368 return dev_err_probe(tps->dev, PTR_ERR(rdev), 369 "Failed to register %s regulator\n", 370 pmic->rdesc[i].name); 371 } 372 373 irq_data = devm_kmalloc(tps->dev, 374 ARRAY_SIZE(tps65219_regulator_irq_types) * 375 sizeof(struct tps65219_regulator_irq_data), 376 GFP_KERNEL); 377 if (!irq_data) 378 return -ENOMEM; 379 380 for (i = 0; i < ARRAY_SIZE(tps65219_regulator_irq_types); ++i) { 381 irq_type = &tps65219_regulator_irq_types[i]; 382 383 irq = platform_get_irq_byname(pdev, irq_type->irq_name); 384 if (irq < 0) 385 return -EINVAL; 386 387 irq_data[i].dev = tps->dev; 388 irq_data[i].type = irq_type; 389 390 error = devm_request_threaded_irq(tps->dev, irq, NULL, 391 tps65219_regulator_irq_handler, 392 IRQF_ONESHOT, 393 irq_type->irq_name, 394 &irq_data[i]); 395 if (error) { 396 dev_err(tps->dev, "failed to request %s IRQ %d: %d\n", 397 irq_type->irq_name, irq, error); 398 return error; 399 } 400 } 401 402 return 0; 403 } 404 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki