From: kernel test robot <lkp@intel.com>
To: Hans de Goede <hdegoede@redhat.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
linux-media@vger.kernel.org,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Subject: [sailus-media-tree:master 9/20] drivers/media/i2c/ov5693.c:1280:19: error: call to undeclared function 'devm_cci_regmap_init_i2c'; ISO C99 and later do not support implicit function declarations
Date: Thu, 27 Jul 2023 16:05:49 +0800 [thread overview]
Message-ID: <202307271519.XIXA0WQd-lkp@intel.com> (raw)
tree: git://linuxtv.org/sailus/media_tree.git master
head: 215e4463b11d94668b841368cb6882f3a2968148
commit: 6ca0d78da91133ec78ecfbdaa7d066849b1b0c0c [9/20] media: ov5693: Convert to new CCI register access helpers
config: mips-randconfig-r013-20230727 (https://download.01.org/0day-ci/archive/20230727/202307271519.XIXA0WQd-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project.git 4a5ac14ee968ff0ad5d2cc1ffa0299048db4c88a)
reproduce: (https://download.01.org/0day-ci/archive/20230727/202307271519.XIXA0WQd-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/202307271519.XIXA0WQd-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/media/i2c/ov5693.c:1280:19: error: call to undeclared function 'devm_cci_regmap_init_i2c'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
1280 | ov5693->regmap = devm_cci_regmap_init_i2c(client, 16);
| ^
>> drivers/media/i2c/ov5693.c:1280:17: error: incompatible integer to pointer conversion assigning to 'struct regmap *' from 'int' [-Wint-conversion]
1280 | ov5693->regmap = devm_cci_regmap_init_i2c(client, 16);
| ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
vim +/devm_cci_regmap_init_i2c +1280 drivers/media/i2c/ov5693.c
1267
1268 static int ov5693_probe(struct i2c_client *client)
1269 {
1270 struct ov5693_device *ov5693;
1271 u32 xvclk_rate;
1272 int ret = 0;
1273
1274 ov5693 = devm_kzalloc(&client->dev, sizeof(*ov5693), GFP_KERNEL);
1275 if (!ov5693)
1276 return -ENOMEM;
1277
1278 ov5693->dev = &client->dev;
1279
> 1280 ov5693->regmap = devm_cci_regmap_init_i2c(client, 16);
1281 if (IS_ERR(ov5693->regmap))
1282 return PTR_ERR(ov5693->regmap);
1283
1284 ret = ov5693_check_hwcfg(ov5693);
1285 if (ret)
1286 return ret;
1287
1288 mutex_init(&ov5693->lock);
1289
1290 v4l2_i2c_subdev_init(&ov5693->sd, client, &ov5693_ops);
1291
1292 ov5693->xvclk = devm_clk_get_optional(&client->dev, "xvclk");
1293 if (IS_ERR(ov5693->xvclk))
1294 return dev_err_probe(&client->dev, PTR_ERR(ov5693->xvclk),
1295 "failed to get xvclk: %ld\n",
1296 PTR_ERR(ov5693->xvclk));
1297
1298 if (ov5693->xvclk) {
1299 xvclk_rate = clk_get_rate(ov5693->xvclk);
1300 } else {
1301 ret = fwnode_property_read_u32(dev_fwnode(&client->dev),
1302 "clock-frequency",
1303 &xvclk_rate);
1304
1305 if (ret) {
1306 dev_err(&client->dev, "can't get clock frequency");
1307 return ret;
1308 }
1309 }
1310
1311 if (xvclk_rate != OV5693_XVCLK_FREQ)
1312 dev_warn(&client->dev, "Found clk freq %u, expected %u\n",
1313 xvclk_rate, OV5693_XVCLK_FREQ);
1314
1315 ret = ov5693_configure_gpios(ov5693);
1316 if (ret)
1317 return ret;
1318
1319 ret = ov5693_get_regulators(ov5693);
1320 if (ret)
1321 return dev_err_probe(&client->dev, ret,
1322 "Error fetching regulators\n");
1323
1324 ov5693->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
1325 ov5693->pad.flags = MEDIA_PAD_FL_SOURCE;
1326 ov5693->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
1327
1328 ov5693->mode.crop = ov5693_default_crop;
1329 ov5693->mode.format = ov5693_default_fmt;
1330 ov5693->mode.vts = __ov5693_calc_vts(ov5693->mode.format.height);
1331
1332 ret = ov5693_init_controls(ov5693);
1333 if (ret)
1334 return ret;
1335
1336 ret = media_entity_pads_init(&ov5693->sd.entity, 1, &ov5693->pad);
1337 if (ret)
1338 goto err_ctrl_handler_free;
1339
1340 /*
1341 * We need the driver to work in the event that pm runtime is disable in
1342 * the kernel, so power up and verify the chip now. In the event that
1343 * runtime pm is disabled this will leave the chip on, so that streaming
1344 * will work.
1345 */
1346
1347 ret = ov5693_sensor_powerup(ov5693);
1348 if (ret)
1349 goto err_media_entity_cleanup;
1350
1351 ret = ov5693_detect(ov5693);
1352 if (ret)
1353 goto err_powerdown;
1354
1355 pm_runtime_set_active(&client->dev);
1356 pm_runtime_get_noresume(&client->dev);
1357 pm_runtime_enable(&client->dev);
1358
1359 ret = v4l2_async_register_subdev_sensor(&ov5693->sd);
1360 if (ret) {
1361 dev_err(&client->dev, "failed to register V4L2 subdev: %d",
1362 ret);
1363 goto err_pm_runtime;
1364 }
1365
1366 pm_runtime_set_autosuspend_delay(&client->dev, 1000);
1367 pm_runtime_use_autosuspend(&client->dev);
1368 pm_runtime_put_autosuspend(&client->dev);
1369
1370 return ret;
1371
1372 err_pm_runtime:
1373 pm_runtime_disable(&client->dev);
1374 pm_runtime_put_noidle(&client->dev);
1375 err_powerdown:
1376 ov5693_sensor_powerdown(ov5693);
1377 err_media_entity_cleanup:
1378 media_entity_cleanup(&ov5693->sd.entity);
1379 err_ctrl_handler_free:
1380 v4l2_ctrl_handler_free(&ov5693->ctrls.handler);
1381
1382 return ret;
1383 }
1384
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2023-07-27 8:10 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202307271519.XIXA0WQd-lkp@intel.com \
--to=lkp@intel.com \
--cc=hdegoede@redhat.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=sakari.ailus@linux.intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox