All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ivan Vecera <ivecera@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [Intel-wired-lan] [PATCH RFC net-next 10/13] dpll: Add reference count tracking support
Date: Mon, 15 Dec 2025 03:28:16 +0100	[thread overview]
Message-ID: <202512150306.R9AA7Oz2-lkp@intel.com> (raw)
In-Reply-To: <20251211194756.234043-11-ivecera@redhat.com>

Hi Ivan,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:

[auto build test WARNING on net-next/main]

url:    https://github.com/intel-lab-lkp/linux/commits/Ivan-Vecera/dt-bindings-net-ethernet-controller-Add-DPLL-pin-properties/20251212-035305
base:   net-next/main
patch link:    https://lore.kernel.org/r/20251211194756.234043-11-ivecera%40redhat.com
patch subject: [Intel-wired-lan] [PATCH RFC net-next 10/13] dpll: Add reference count tracking support
config: x86_64-rhel-9.4-ltp (https://download.01.org/0day-ci/archive/20251215/202512150306.R9AA7Oz2-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251215/202512150306.R9AA7Oz2-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/202512150306.R9AA7Oz2-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> Warning: drivers/dpll/dpll_core.c:399 function parameter 'tracker' not described in 'dpll_device_get'
>> Warning: drivers/dpll/dpll_core.c:434 function parameter 'tracker' not described in 'dpll_device_put'
>> Warning: drivers/dpll/dpll_core.c:746 function parameter 'tracker' not described in 'dpll_pin_get'
>> Warning: drivers/dpll/dpll_core.c:781 function parameter 'tracker' not described in 'dpll_pin_put'
>> Warning: drivers/dpll/dpll_core.c:802 function parameter 'tracker' not described in 'fwnode_dpll_pin_find'
>> Warning: drivers/dpll/dpll_core.c:399 function parameter 'tracker' not described in 'dpll_device_get'
>> Warning: drivers/dpll/dpll_core.c:434 function parameter 'tracker' not described in 'dpll_device_put'
>> Warning: drivers/dpll/dpll_core.c:746 function parameter 'tracker' not described in 'dpll_pin_get'
>> Warning: drivers/dpll/dpll_core.c:781 function parameter 'tracker' not described in 'dpll_pin_put'
>> Warning: drivers/dpll/dpll_core.c:802 function parameter 'tracker' not described in 'fwnode_dpll_pin_find'

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2025-12-15  2:28 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-11 19:47 [Intel-wired-lan] [PATCH RFC net-next 00/13] dpll: Core improvements and ice E825-C SyncE support Ivan Vecera
2025-12-11 19:47 ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 01/13] dt-bindings: net: ethernet-controller: Add DPLL pin properties Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:56   ` [Intel-wired-lan] " Andrew Lunn
2025-12-11 19:56     ` Andrew Lunn
2025-12-14 20:41     ` [Intel-wired-lan] " Ivan Vecera
2025-12-14 20:41       ` Ivan Vecera
2025-12-17  0:49     ` [Intel-wired-lan] " Rob Herring
2025-12-17  0:49       ` Rob Herring
2026-01-05 16:23       ` [Intel-wired-lan] " Ivan Vecera
2026-01-05 16:23         ` Ivan Vecera
2026-01-07 15:15         ` [Intel-wired-lan] " Rob Herring
2026-01-07 15:15           ` Rob Herring
2026-01-07 16:23           ` [Intel-wired-lan] " Ivan Vecera
2026-01-07 16:23             ` Ivan Vecera
2026-01-07 17:31             ` [Intel-wired-lan] " Andrew Lunn
2026-01-07 17:31               ` Andrew Lunn
2026-01-07 19:18               ` [Intel-wired-lan] " Ivan Vecera
2026-01-07 19:18                 ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 02/13] dpll: Allow registering pin with firmware node Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-12 11:25   ` [Intel-wired-lan] " Jiri Pirko
2025-12-12 11:25     ` Jiri Pirko
2025-12-14 19:35     ` [Intel-wired-lan] " Ivan Vecera
2025-12-14 19:35       ` Ivan Vecera
2025-12-15 13:08       ` [Intel-wired-lan] " Jiri Pirko
2025-12-15 13:08         ` Jiri Pirko
2025-12-15 13:51         ` [Intel-wired-lan] " Ivan Vecera
2025-12-15 13:51           ` Ivan Vecera
2025-12-15 14:09           ` [Intel-wired-lan] " Jiri Pirko
2025-12-15 14:09             ` Jiri Pirko
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 03/13] net: eth: Add helpers to find DPLL pin " Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 04/13] dpll: zl3073x: register pins with fwnode handle Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 05/13] dpll: Add notifier chain for dpll events Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 06/13] dpll: Support dynamic pin index allocation Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-15 14:10   ` [Intel-wired-lan] " Przemek Kitszel
2025-12-15 14:10     ` Przemek Kitszel
2025-12-15 14:43     ` [Intel-wired-lan] " Ivan Vecera
2025-12-15 14:43       ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 07/13] dpll: zl3073x: Add support for mux pin type Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 08/13] dpll: Enhance and consolidate reference counting logic Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 09/13] dpll: Prevent duplicate registrations Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 10/13] dpll: Add reference count tracking support Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 23:18   ` [Intel-wired-lan] " kernel test robot
2025-12-14 22:53   ` kernel test robot
2025-12-15  2:28   ` kernel test robot [this message]
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 11/13] dpll: zl3073x: Enable reference count tracking Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-12  0:25   ` [Intel-wired-lan] " kernel test robot
2025-12-12 11:11   ` Jiri Pirko
2025-12-12 11:11     ` Jiri Pirko
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 12/13] ice: dpll: " Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-11 19:47 ` [Intel-wired-lan] [PATCH RFC net-next 13/13] ice: dpll: Support E825-C SyncE and dynamic pin discovery Ivan Vecera
2025-12-11 19:47   ` Ivan Vecera
2025-12-12 10:20   ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-12-12 10:20     ` Loktionov, Aleksandr
2025-12-14 19:30     ` Ivan Vecera
2025-12-14 19:30       ` Ivan Vecera

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=202512150306.R9AA7Oz2-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=ivecera@redhat.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    /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.