All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	linux-arm-kernel@lists.infradead.org
Subject: [arm:net-queue 171/174] drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned lo...
Date: Sat, 8 Jan 2022 14:07:17 +0800	[thread overview]
Message-ID: <202201081440.qAwUArEv-lkp@intel.com> (raw)

tree:   git://git.armlinux.org.uk/~rmk/linux-arm.git net-queue
head:   9ceab2608ffe3f543e1118044bc86bc6ccb93255
commit: a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f [171/174] net: phylink: pass mode into pcs_validate()
config: i386-randconfig-a005-20220106 (https://download.01.org/0day-ci/archive/20220108/202201081440.qAwUArEv-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ca7ffe09dc6e525109e3cd570cc5182ce568be13)
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
        git remote add arm git://git.armlinux.org.uk/~rmk/linux-arm.git
        git fetch --no-tags arm net-queue
        git checkout a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3012:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3039:32: error: no member named 'pcs_ops' in 'struct mt7530_priv'
                   priv->pcs[i].pcs.ops = priv->pcs_ops;
                                          ~~~~  ^
   3 errors generated.


vim +3005 drivers/net/dsa/mt7530.c

c288575f7810a5 Landen Chao           2020-09-11  3003  
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3004) static const struct phylink_pcs_ops mt7530_pcs_ops = {
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21 @3005) 	.pcs_validate = mt753x_pcs_validate,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3006) 	.pcs_get_state = mt7530_pcs_get_state,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3007) 	.pcs_config = mt753x_pcs_config,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3008) 	.pcs_an_restart = mt7530_pcs_an_restart,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3009) };
88bdef8be9f649 Landen Chao           2020-09-11  3010  

:::::: The code at line 3005 was first introduced by commit
:::::: 0ecdf3ab2ae1d35480614337758d8db5060885cf net: dsa: mt7530: partially convert to phylink_pcs  *EXPERIMENTAL*

:::::: TO: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
:::::: CC: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: "Russell King (Oracle)" <rmk+kernel@armlinux.org.uk>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	linux-arm-kernel@lists.infradead.org
Subject: [arm:net-queue 171/174] drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned lo...
Date: Sat, 8 Jan 2022 14:07:17 +0800	[thread overview]
Message-ID: <202201081440.qAwUArEv-lkp@intel.com> (raw)

tree:   git://git.armlinux.org.uk/~rmk/linux-arm.git net-queue
head:   9ceab2608ffe3f543e1118044bc86bc6ccb93255
commit: a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f [171/174] net: phylink: pass mode into pcs_validate()
config: i386-randconfig-a005-20220106 (https://download.01.org/0day-ci/archive/20220108/202201081440.qAwUArEv-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ca7ffe09dc6e525109e3cd570cc5182ce568be13)
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
        git remote add arm git://git.armlinux.org.uk/~rmk/linux-arm.git
        git fetch --no-tags arm net-queue
        git checkout a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3012:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3039:32: error: no member named 'pcs_ops' in 'struct mt7530_priv'
                   priv->pcs[i].pcs.ops = priv->pcs_ops;
                                          ~~~~  ^
   3 errors generated.


vim +3005 drivers/net/dsa/mt7530.c

c288575f7810a5 Landen Chao           2020-09-11  3003  
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3004) static const struct phylink_pcs_ops mt7530_pcs_ops = {
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21 @3005) 	.pcs_validate = mt753x_pcs_validate,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3006) 	.pcs_get_state = mt7530_pcs_get_state,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3007) 	.pcs_config = mt753x_pcs_config,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3008) 	.pcs_an_restart = mt7530_pcs_an_restart,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3009) };
88bdef8be9f649 Landen Chao           2020-09-11  3010  

:::::: The code at line 3005 was first introduced by commit
:::::: 0ecdf3ab2ae1d35480614337758d8db5060885cf net: dsa: mt7530: partially convert to phylink_pcs  *EXPERIMENTAL*

:::::: TO: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
:::::: CC: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [arm:net-queue 171/174] drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned lo...
Date: Sat, 08 Jan 2022 14:07:17 +0800	[thread overview]
Message-ID: <202201081440.qAwUArEv-lkp@intel.com> (raw)

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

tree:   git://git.armlinux.org.uk/~rmk/linux-arm.git net-queue
head:   9ceab2608ffe3f543e1118044bc86bc6ccb93255
commit: a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f [171/174] net: phylink: pass mode into pcs_validate()
config: i386-randconfig-a005-20220106 (https://download.01.org/0day-ci/archive/20220108/202201081440.qAwUArEv-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ca7ffe09dc6e525109e3cd570cc5182ce568be13)
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
        git remote add arm git://git.armlinux.org.uk/~rmk/linux-arm.git
        git fetch --no-tags arm net-queue
        git checkout a5d401c6c8d1f84dcfa1a267166ad8ce85cda26f
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3012:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned long *, const struct phylink_link_state *)' [-Werror,-Wincompatible-function-pointer-types]
           .pcs_validate = mt753x_pcs_validate,
                           ^~~~~~~~~~~~~~~~~~~
   drivers/net/dsa/mt7530.c:3039:32: error: no member named 'pcs_ops' in 'struct mt7530_priv'
                   priv->pcs[i].pcs.ops = priv->pcs_ops;
                                          ~~~~  ^
   3 errors generated.


vim +3005 drivers/net/dsa/mt7530.c

c288575f7810a5 Landen Chao           2020-09-11  3003  
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3004) static const struct phylink_pcs_ops mt7530_pcs_ops = {
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21 @3005) 	.pcs_validate = mt753x_pcs_validate,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3006) 	.pcs_get_state = mt7530_pcs_get_state,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3007) 	.pcs_config = mt753x_pcs_config,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3008) 	.pcs_an_restart = mt7530_pcs_an_restart,
0ecdf3ab2ae1d3 Russell King (Oracle  2021-11-21  3009) };
88bdef8be9f649 Landen Chao           2020-09-11  3010  

:::::: The code at line 3005 was first introduced by commit
:::::: 0ecdf3ab2ae1d35480614337758d8db5060885cf net: dsa: mt7530: partially convert to phylink_pcs  *EXPERIMENTAL*

:::::: TO: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
:::::: CC: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

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

             reply	other threads:[~2022-01-08  6:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-08  6:07 kernel test robot [this message]
2022-01-08  6:07 ` [arm:net-queue 171/174] drivers/net/dsa/mt7530.c:3005:18: error: incompatible function pointer types initializing 'int (*)(struct phylink_pcs *, unsigned int, unsigned long *, const struct phylink_link_state *)' with an expression of type 'void (struct phylink_pcs *, unsigned lo kernel test robot
2022-01-08  6:07 ` kernel test robot

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=202201081440.qAwUArEv-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=llvm@lists.linux.dev \
    --cc=rmk+kernel@armlinux.org.uk \
    /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.