linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Oliver O'Halloran <oohall@gmail.com>, linuxppc-dev@lists.ozlabs.org
Cc: kbuild-all@lists.01.org
Subject: Re: [PATCH] powerpc/pseries: Make vio and ibmebus initcalls pseries specific
Date: Tue, 21 Apr 2020 15:49:15 +0800	[thread overview]
Message-ID: <202004211555.YX55S6fx%lkp@intel.com> (raw)
In-Reply-To: <20200417040749.25800-1-oohall@gmail.com>

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

Hi Oliver,

I love your patch! Yet something to improve:

[auto build test ERROR on powerpc/next]
[also build test ERROR on scottwood/next v5.7-rc2 next-20200420]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Oliver-O-Halloran/powerpc-pseries-Make-vio-and-ibmebus-initcalls-pseries-specific/20200417-121826
base:   https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next
config: powerpc-defconfig (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=powerpc 

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

All errors (new ones prefixed by >>):

   arch/powerpc/platforms/pseries/ibmebus.c:467:1: error: data definition has no type or storage class [-Werror]
     467 | machine_postcore_initcall(pseries, ibmebus_bus_init);
         | ^~~~~~~~~~~~~~~~~~~~~~~~~
>> arch/powerpc/platforms/pseries/ibmebus.c:467:1: error: type defaults to 'int' in declaration of 'machine_postcore_initcall' [-Werror=implicit-int]
   arch/powerpc/platforms/pseries/ibmebus.c:467:1: error: parameter names (without types) in function declaration [-Werror]
>> arch/powerpc/platforms/pseries/ibmebus.c:436:19: error: 'ibmebus_bus_init' defined but not used [-Werror=unused-function]
     436 | static int __init ibmebus_bus_init(void)
         |                   ^~~~~~~~~~~~~~~~
   cc1: all warnings being treated as errors

vim +467 arch/powerpc/platforms/pseries/ibmebus.c

   435	
 > 436	static int __init ibmebus_bus_init(void)
   437	{
   438		int err;
   439	
   440		printk(KERN_INFO "IBM eBus Device Driver\n");
   441	
   442		err = bus_register(&ibmebus_bus_type);
   443		if (err) {
   444			printk(KERN_ERR "%s: failed to register IBM eBus.\n",
   445			       __func__);
   446			return err;
   447		}
   448	
   449		err = device_register(&ibmebus_bus_device);
   450		if (err) {
   451			printk(KERN_WARNING "%s: device_register returned %i\n",
   452			       __func__, err);
   453			bus_unregister(&ibmebus_bus_type);
   454	
   455			return err;
   456		}
   457	
   458		err = ibmebus_create_devices(ibmebus_matches);
   459		if (err) {
   460			device_unregister(&ibmebus_bus_device);
   461			bus_unregister(&ibmebus_bus_type);
   462			return err;
   463		}
   464	
   465		return 0;
   466	}
 > 467	machine_postcore_initcall(pseries, ibmebus_bus_init);

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

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

      parent reply	other threads:[~2020-04-21  7:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-17  4:07 [PATCH] powerpc/pseries: Make vio and ibmebus initcalls pseries specific Oliver O'Halloran
2020-04-18  1:04 ` Tyrel Datwyler
2020-04-21  7:49 ` kbuild 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=202004211555.YX55S6fx%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=oohall@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).