* [linux-next:master 11860/12910] drivers/of/unittest.c:3763:43: error: invalid use of undefined type 'struct overlay_info'
@ 2023-08-25 19:05 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2023-08-25 19:05 UTC (permalink / raw)
To: Lizhi Hou; +Cc: oe-kbuild-all, Linux Memory Management List, Rob Herring
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: 6269320850097903b30be8f07a5c61d9f7592393
commit: 26409dd045892904b059dc411403e9c8ce7543ca [11860/12910] of: unittest: Add pci_dt_testdrv pci driver
config: alpha-randconfig-r006-20230826 (https://download.01.org/0day-ci/archive/20230826/202308260218.hAEW63gz-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.2.0
reproduce: (https://download.01.org/0day-ci/archive/20230826/202308260218.hAEW63gz-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/202308260218.hAEW63gz-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/of/unittest.c: In function 'testdrv_probe':
drivers/of/unittest.c:3763:21: error: 'overlays' undeclared (first use in this function)
3763 | for (info = overlays; info && info->name; info++) {
| ^~~~~~~~
drivers/of/unittest.c:3763:21: note: each undeclared identifier is reported only once for each function it appears in
>> drivers/of/unittest.c:3763:43: error: invalid use of undefined type 'struct overlay_info'
3763 | for (info = overlays; info && info->name; info++) {
| ^~
drivers/of/unittest.c:3763:55: error: increment of pointer to an incomplete type 'struct overlay_info'
3763 | for (info = overlays; info && info->name; info++) {
| ^~
drivers/of/unittest.c:3764:33: error: invalid use of undefined type 'struct overlay_info'
3764 | if (!strcmp(info->name, "overlay_pci_node"))
| ^~
drivers/of/unittest.c:3767:27: error: invalid use of undefined type 'struct overlay_info'
3767 | if (!info || !info->name) {
| ^~
drivers/of/unittest.c:3772:20: error: invalid use of undefined type 'struct overlay_info'
3772 | size = info->dtbo_end - info->dtbo_begin;
| ^~
drivers/of/unittest.c:3772:37: error: invalid use of undefined type 'struct overlay_info'
3772 | size = info->dtbo_end - info->dtbo_begin;
| ^~
drivers/of/unittest.c:3773:40: error: invalid use of undefined type 'struct overlay_info'
3773 | ret = of_overlay_fdt_apply(info->dtbo_begin, size, &ovcs_id, dn);
| ^~
drivers/of/unittest.c:3773:15: error: too many arguments to function 'of_overlay_fdt_apply'
3773 | ret = of_overlay_fdt_apply(info->dtbo_begin, size, &ovcs_id, dn);
| ^~~~~~~~~~~~~~~~~~~~
In file included from drivers/of/unittest.c:15:
include/linux/of.h:1679:19: note: declared here
1679 | static inline int of_overlay_fdt_apply(void *overlay_fdt, u32 overlay_fdt_size,
| ^~~~~~~~~~~~~~~~~~~~
vim +3763 drivers/of/unittest.c
3749
3750 static int testdrv_probe(struct pci_dev *pdev, const struct pci_device_id *id)
3751 {
3752 struct overlay_info *info;
3753 struct device_node *dn;
3754 int ret, ovcs_id;
3755 u32 size;
3756
3757 dn = pdev->dev.of_node;
3758 if (!dn) {
3759 dev_err(&pdev->dev, "does not find bus endpoint");
3760 return -EINVAL;
3761 }
3762
> 3763 for (info = overlays; info && info->name; info++) {
3764 if (!strcmp(info->name, "overlay_pci_node"))
3765 break;
3766 }
3767 if (!info || !info->name) {
3768 dev_err(&pdev->dev, "no overlay data for overlay_pci_node");
3769 return -ENODEV;
3770 }
3771
3772 size = info->dtbo_end - info->dtbo_begin;
3773 ret = of_overlay_fdt_apply(info->dtbo_begin, size, &ovcs_id, dn);
3774 of_node_put(dn);
3775 if (ret)
3776 return ret;
3777
3778 of_platform_default_populate(dn, NULL, &pdev->dev);
3779 pci_set_drvdata(pdev, (void *)(uintptr_t)ovcs_id);
3780
3781 return 0;
3782 }
3783
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-08-25 19:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-25 19:05 [linux-next:master 11860/12910] drivers/of/unittest.c:3763:43: error: invalid use of undefined type 'struct overlay_info' kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox