From: kernel test robot <lkp@intel.com>
To: Luca Weiss <luca.weiss@fairphone.com>,
Hans de Goede <hdegoede@redhat.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Javier Martinez Canillas <javierm@redhat.com>,
Helge Deller <deller@gmx.de>
Cc: oe-kbuild-all@lists.linux.dev, linux-fbdev@vger.kernel.org,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Luca Weiss <luca.weiss@fairphone.com>
Subject: Re: [PATCH 3/3] fbdev/simplefb: Add support for interconnect paths
Date: Sun, 22 Jun 2025 10:21:48 +0800 [thread overview]
Message-ID: <202506221019.ooLo1xBw-lkp@intel.com> (raw)
In-Reply-To: <20250620-simple-drm-fb-icc-v1-3-d92142e8f74f@fairphone.com>
Hi Luca,
kernel test robot noticed the following build errors:
[auto build test ERROR on 19272b37aa4f83ca52bdf9c16d5d81bdd1354494]
url: https://github.com/intel-lab-lkp/linux/commits/Luca-Weiss/dt-bindings-display-simple-framebuffer-Add-interconnects-property/20250620-183302
base: 19272b37aa4f83ca52bdf9c16d5d81bdd1354494
patch link: https://lore.kernel.org/r/20250620-simple-drm-fb-icc-v1-3-d92142e8f74f%40fairphone.com
patch subject: [PATCH 3/3] fbdev/simplefb: Add support for interconnect paths
config: sparc-randconfig-r063-20250622 (https://download.01.org/0day-ci/archive/20250622/202506221019.ooLo1xBw-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 10.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250622/202506221019.ooLo1xBw-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/202506221019.ooLo1xBw-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/video/fbdev/simplefb.c: In function 'simplefb_detach_icc':
>> drivers/video/fbdev/simplefb.c:542:14: error: 'struct simplefb_par' has no member named 'icc_count'
542 | for (i = par->icc_count - 1; i >= 0; i--) {
| ^~
>> drivers/video/fbdev/simplefb.c:543:26: error: 'struct simplefb_par' has no member named 'icc_paths'
543 | if (!IS_ERR_OR_NULL(par->icc_paths[i]))
| ^~
drivers/video/fbdev/simplefb.c:544:15: error: 'struct simplefb_par' has no member named 'icc_paths'
544 | icc_put(par->icc_paths[i]);
| ^~
drivers/video/fbdev/simplefb.c: In function 'simplefb_attach_icc':
drivers/video/fbdev/simplefb.c:564:5: error: 'struct simplefb_par' has no member named 'icc_count'
564 | par->icc_count = count / 2;
| ^~
drivers/video/fbdev/simplefb.c:566:5: error: 'struct simplefb_par' has no member named 'icc_paths'
566 | par->icc_paths = devm_kcalloc(dev, par->icc_count,
| ^~
drivers/video/fbdev/simplefb.c:566:40: error: 'struct simplefb_par' has no member named 'icc_count'
566 | par->icc_paths = devm_kcalloc(dev, par->icc_count,
| ^~
drivers/video/fbdev/simplefb.c:567:22: error: 'struct simplefb_par' has no member named 'icc_paths'
567 | sizeof(*par->icc_paths),
| ^~
drivers/video/fbdev/simplefb.c:569:10: error: 'struct simplefb_par' has no member named 'icc_paths'
569 | if (!par->icc_paths)
| ^~
drivers/video/fbdev/simplefb.c:572:21: error: 'struct simplefb_par' has no member named 'icc_count'
572 | for (i = 0; i < par->icc_count; i++) {
| ^~
drivers/video/fbdev/simplefb.c:573:6: error: 'struct simplefb_par' has no member named 'icc_paths'
573 | par->icc_paths[i] = of_icc_get_by_index(dev, i);
| ^~
drivers/video/fbdev/simplefb.c:574:25: error: 'struct simplefb_par' has no member named 'icc_paths'
574 | if (IS_ERR_OR_NULL(par->icc_paths[i])) {
| ^~
drivers/video/fbdev/simplefb.c:575:21: error: 'struct simplefb_par' has no member named 'icc_paths'
575 | ret = PTR_ERR(par->icc_paths[i]);
| ^~
drivers/video/fbdev/simplefb.c:582:23: error: 'struct simplefb_par' has no member named 'icc_paths'
582 | ret = icc_set_bw(par->icc_paths[i], 0, UINT_MAX);
| ^~
drivers/video/fbdev/simplefb.c:594:26: error: 'struct simplefb_par' has no member named 'icc_paths'
594 | if (!IS_ERR_OR_NULL(par->icc_paths[i]))
| ^~
drivers/video/fbdev/simplefb.c:595:15: error: 'struct simplefb_par' has no member named 'icc_paths'
595 | icc_put(par->icc_paths[i]);
| ^~
vim +542 drivers/video/fbdev/simplefb.c
532
533 #if defined CONFIG_OF && defined CONFIG_PM_GENERIC_DOMAINS
534 /*
535 * Generic interconnect path handling code.
536 */
537 static void simplefb_detach_icc(void *res)
538 {
539 struct simplefb_par *par = res;
540 int i;
541
> 542 for (i = par->icc_count - 1; i >= 0; i--) {
> 543 if (!IS_ERR_OR_NULL(par->icc_paths[i]))
544 icc_put(par->icc_paths[i]);
545 }
546 }
547
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2025-06-22 2:22 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-20 10:31 [PATCH 0/3] Add interconnent support for simpledrm/simplefb Luca Weiss
2025-06-20 10:31 ` [PATCH 1/3] dt-bindings: display: simple-framebuffer: Add interconnects property Luca Weiss
2025-06-20 11:03 ` Thomas Zimmermann
2025-06-20 10:31 ` [PATCH 2/3] drm/sysfb: simpledrm: Add support for interconnect paths Luca Weiss
2025-06-20 11:01 ` Thomas Zimmermann
2025-06-20 10:31 ` [PATCH 3/3] fbdev/simplefb: " Luca Weiss
2025-06-20 11:02 ` Thomas Zimmermann
2025-06-20 11:07 ` Luca Weiss
2025-06-20 11:28 ` Thomas Zimmermann
2025-06-20 12:07 ` Luca Weiss
2025-06-20 12:36 ` Thomas Zimmermann
2025-06-20 13:09 ` Luca Weiss
2025-06-22 2:21 ` kernel test robot [this message]
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=202506221019.ooLo1xBw-lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=deller@gmx.de \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=hdegoede@redhat.com \
--cc=javierm@redhat.com \
--cc=krzk@kernel.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luca.weiss@fairphone.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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