All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 3/8] drm/connector: Add drm_connector_find_by_fwnode() function (v2)
Date: Thu, 06 May 2021 03:54:45 +0800	[thread overview]
Message-ID: <202105060351.wHm6iWYi-lkp@intel.com> (raw)
In-Reply-To: <20210505162415.531876-4-hdegoede@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 3040 bytes --]

Hi Hans,

I love your patch! Perhaps something to improve:

[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on usb/usb-testing drm-tip/drm-tip linus/master v5.12 next-20210505]
[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]

url:    https://github.com/0day-ci/linux/commits/Hans-de-Goede/drm-usb-type-c-Add-support-for-out-of-band-hotplug-notification-v3/20210506-002624
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: arc-allyesconfig (attached as .config)
compiler: arceb-elf-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/5085315617add59089e87c8b5e2807ef530a2a34
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Hans-de-Goede/drm-usb-type-c-Add-support-for-out-of-band-hotplug-notification-v3/20210506-002624
        git checkout 5085315617add59089e87c8b5e2807ef530a2a34
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=arc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   In file included from drivers/gpu/drm/selftests/test-drm_framebuffer.c:12:
>> drivers/gpu/drm/selftests/../drm_crtc_internal.h:188:59: warning: 'struct fwnode_handle' declared inside parameter list will not be visible outside of this definition or declaration
     188 | struct drm_connector *drm_connector_find_by_fwnode(struct fwnode_handle *fwnode);
         |                                                           ^~~~~~~~~~~~~


vim +188 drivers/gpu/drm/selftests/../drm_crtc_internal.h

   172	
   173	/* IOCTL */
   174	int drm_mode_getencoder(struct drm_device *dev,
   175				void *data, struct drm_file *file_priv);
   176	
   177	/* drm_connector.c */
   178	void drm_connector_ida_init(void);
   179	void drm_connector_ida_destroy(void);
   180	void drm_connector_unregister_all(struct drm_device *dev);
   181	int drm_connector_register_all(struct drm_device *dev);
   182	int drm_connector_set_obj_prop(struct drm_mode_object *obj,
   183					    struct drm_property *property,
   184					    uint64_t value);
   185	int drm_connector_create_standard_properties(struct drm_device *dev);
   186	const char *drm_get_connector_force_name(enum drm_connector_force force);
   187	void drm_connector_free_work_fn(struct work_struct *work);
 > 188	struct drm_connector *drm_connector_find_by_fwnode(struct fwnode_handle *fwnode);
   189	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 67503 bytes --]

  reply	other threads:[~2021-05-05 19:54 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-05 16:24 [PATCH 0/8] drm + usb-type-c: Add support for out-of-band hotplug notification (v3) Hans de Goede
2021-05-05 16:24 ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24 ` Hans de Goede
2021-05-05 16:24 ` [PATCH 1/8] drm/connector: Give connector sysfs devices there own device_type Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 16:24 ` [PATCH 2/8] drm/connector: Add a fwnode pointer to drm_connector and register with ACPI (v2) Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 16:24 ` [PATCH 3/8] drm/connector: Add drm_connector_find_by_fwnode() function (v2) Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 19:54   ` kernel test robot [this message]
2021-05-05 20:27   ` kernel test robot
2021-05-05 16:24 ` [PATCH 4/8] drm/connector: Add support for out-of-band hotplug notification (v3) Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 16:24 ` [PATCH 5/8] drm/i915: Associate ACPI connector nodes with connector entries (v2) Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 16:24 ` [PATCH 6/8] drm/i915/dp: Add support for out-of-bound hotplug events Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-05 16:24 ` [PATCH 7/8] usb: typec: altmodes/displayport: Make dp_altmode_notify() more generic Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-11  6:55   ` Heikki Krogerus
2021-05-11  6:55     ` [Intel-gfx] " Heikki Krogerus
2021-05-11  6:55     ` Heikki Krogerus
2021-05-05 16:24 ` [PATCH 8/8] usb: typec: altmodes/displayport: Notify drm subsys of hotplug events Hans de Goede
2021-05-05 16:24   ` [Intel-gfx] " Hans de Goede
2021-05-05 16:24   ` Hans de Goede
2021-05-11  6:56   ` Heikki Krogerus
2021-05-11  6:56     ` [Intel-gfx] " Heikki Krogerus
2021-05-11  6:56     ` Heikki Krogerus
2021-05-05 16:38 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm + usb-type-c: Add support for out-of-band hotplug notification (rev3) Patchwork
2021-05-05 17:04 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-05-05 19:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-05-06  8:53   ` Hans de Goede
2021-05-06 15:31 ` Patchwork
2021-05-07 11:09   ` Hans de Goede
2021-05-11  7:05 ` [PATCH 0/8] drm + usb-type-c: Add support for out-of-band hotplug notification (v3) Heikki Krogerus
2021-05-11  7:05   ` [Intel-gfx] " Heikki Krogerus
2021-05-11  7:05   ` Heikki Krogerus
2021-05-21 11:41   ` Heikki Krogerus
2021-05-21 11:41     ` [Intel-gfx] " Heikki Krogerus
2021-05-21 11:41     ` Heikki Krogerus

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=202105060351.wHm6iWYi-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.