All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Joseph CHAMG <josright123@gmail.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org
Subject: Re: [PATCH v12, 2/2] net: Add dm9051 driver
Date: Fri, 21 Jan 2022 18:00:49 +0800	[thread overview]
Message-ID: <202201211736.UtU0eL2j-lkp@intel.com> (raw)
In-Reply-To: <20220121041428.6437-3-josright123@gmail.com>

Hi Joseph,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on 9d922f5df53844228b9f7c62f2593f4f06c0b69b]

url:    https://github.com/0day-ci/linux/commits/Joseph-CHAMG/ADD-DM9051-ETHERNET-DRIVER/20220121-121713
base:   9d922f5df53844228b9f7c62f2593f4f06c0b69b
config: arm64-allyesconfig (https://download.01.org/0day-ci/archive/20220121/202201211736.UtU0eL2j-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project d4baf3b1322b84816aa623d8e8cb45a49cb68b84)
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
        # install arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # https://github.com/0day-ci/linux/commit/a6eb8dd02aed17af37a0b38fbcc250fd9ed9492d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Joseph-CHAMG/ADD-DM9051-ETHERNET-DRIVER/20220121-121713
        git checkout a6eb8dd02aed17af37a0b38fbcc250fd9ed9492d
        # 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=arm64 SHELL=/bin/bash drivers/net/ethernet/davicom/

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 >>):

>> drivers/net/ethernet/davicom/dm9051.c:1076:26: warning: implicit conversion from 'unsigned long' to 'u32' (aka 'unsigned int') changes value from 18446744073709551613 to 4294967293 [-Wconstant-conversion]
           db->mdiobus->phy_mask = ~GENMASK(1, 1);
                                 ~ ^~~~~~~~~~~~~~
   1 warning generated.


vim +1076 drivers/net/ethernet/davicom/dm9051.c

  1062	
  1063	static int dm9051_mdiobus_register(struct board_info *db)
  1064	{
  1065		struct spi_device *spi = db->spidev;
  1066		int ret;
  1067	
  1068		db->mdiobus = devm_mdiobus_alloc(&spi->dev);
  1069		if (!db->mdiobus)
  1070			return -ENOMEM;
  1071	
  1072		db->mdiobus->priv = db;
  1073		db->mdiobus->read = dm9051_mdiobus_read;
  1074		db->mdiobus->write = dm9051_mdiobus_write;
  1075		db->mdiobus->name = "dm9051-mdiobus";
> 1076		db->mdiobus->phy_mask = ~GENMASK(1, 1);
  1077		db->mdiobus->parent = &spi->dev;
  1078		snprintf(db->mdiobus->id, MII_BUS_ID_SIZE,
  1079			 "dm9051-%s.%u", dev_name(&spi->dev), spi->chip_select);
  1080	
  1081		ret = devm_mdiobus_register(&spi->dev, db->mdiobus);
  1082		if (ret) {
  1083			dev_err(&spi->dev, "Could not register MDIO bus\n");
  1084			return ret;
  1085		}
  1086		return 0;
  1087	}
  1088	

---
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: kbuild-all@lists.01.org
Subject: Re: [PATCH v12, 2/2] net: Add dm9051 driver
Date: Fri, 21 Jan 2022 18:00:49 +0800	[thread overview]
Message-ID: <202201211736.UtU0eL2j-lkp@intel.com> (raw)
In-Reply-To: <20220121041428.6437-3-josright123@gmail.com>

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

Hi Joseph,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on 9d922f5df53844228b9f7c62f2593f4f06c0b69b]

url:    https://github.com/0day-ci/linux/commits/Joseph-CHAMG/ADD-DM9051-ETHERNET-DRIVER/20220121-121713
base:   9d922f5df53844228b9f7c62f2593f4f06c0b69b
config: arm64-allyesconfig (https://download.01.org/0day-ci/archive/20220121/202201211736.UtU0eL2j-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project d4baf3b1322b84816aa623d8e8cb45a49cb68b84)
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
        # install arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # https://github.com/0day-ci/linux/commit/a6eb8dd02aed17af37a0b38fbcc250fd9ed9492d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Joseph-CHAMG/ADD-DM9051-ETHERNET-DRIVER/20220121-121713
        git checkout a6eb8dd02aed17af37a0b38fbcc250fd9ed9492d
        # 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=arm64 SHELL=/bin/bash drivers/net/ethernet/davicom/

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 >>):

>> drivers/net/ethernet/davicom/dm9051.c:1076:26: warning: implicit conversion from 'unsigned long' to 'u32' (aka 'unsigned int') changes value from 18446744073709551613 to 4294967293 [-Wconstant-conversion]
           db->mdiobus->phy_mask = ~GENMASK(1, 1);
                                 ~ ^~~~~~~~~~~~~~
   1 warning generated.


vim +1076 drivers/net/ethernet/davicom/dm9051.c

  1062	
  1063	static int dm9051_mdiobus_register(struct board_info *db)
  1064	{
  1065		struct spi_device *spi = db->spidev;
  1066		int ret;
  1067	
  1068		db->mdiobus = devm_mdiobus_alloc(&spi->dev);
  1069		if (!db->mdiobus)
  1070			return -ENOMEM;
  1071	
  1072		db->mdiobus->priv = db;
  1073		db->mdiobus->read = dm9051_mdiobus_read;
  1074		db->mdiobus->write = dm9051_mdiobus_write;
  1075		db->mdiobus->name = "dm9051-mdiobus";
> 1076		db->mdiobus->phy_mask = ~GENMASK(1, 1);
  1077		db->mdiobus->parent = &spi->dev;
  1078		snprintf(db->mdiobus->id, MII_BUS_ID_SIZE,
  1079			 "dm9051-%s.%u", dev_name(&spi->dev), spi->chip_select);
  1080	
  1081		ret = devm_mdiobus_register(&spi->dev, db->mdiobus);
  1082		if (ret) {
  1083			dev_err(&spi->dev, "Could not register MDIO bus\n");
  1084			return ret;
  1085		}
  1086		return 0;
  1087	}
  1088	

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

  parent reply	other threads:[~2022-01-21 10:01 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-21  4:14 [PATCH v12, 0/2] ADD DM9051 ETHERNET DRIVER Joseph CHAMG
2022-01-21  4:14 ` [PATCH v12, 1/2] yaml: Add dm9051 SPI network yaml file Joseph CHAMG
2022-01-21  4:14 ` [PATCH v12, 2/2] net: Add dm9051 driver Joseph CHAMG
2022-01-21  6:26   ` kernel test robot
2022-01-21 10:00   ` kernel test robot [this message]
2022-01-21 10:00     ` kernel test robot
2022-01-21 10:37   ` Andy Shevchenko
2022-01-21 10:41     ` Andy Shevchenko
2022-01-21 16:43   ` Andrew Lunn

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=202201211736.UtU0eL2j-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=josright123@gmail.com \
    --cc=kbuild-all@lists.01.org \
    --cc=llvm@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.