From: kernel test robot <lkp@intel.com>
To: Nihar Chaithanya <niharchaithanya@gmail.com>,
dpenkler@gmail.com, gregkh@linuxfoundation.org,
roheetchavan@gmail.com, arnd@arndb.de, dan.carpenter@linaro.org,
kees@ijzerbout.nl, m.omerfarukbulut@gmail.com,
skhan@linuxfoundation.org, everestkc@everestkc.com.np,
dominik.karol.piatkowski@protonmail.com, nathan@kernel.org,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v3] staging: gpib: Add error handling
Date: Sun, 22 Dec 2024 15:06:22 +0800 [thread overview]
Message-ID: <202412221424.WIjKFIPf-lkp@intel.com> (raw)
In-Reply-To: <20241221214822.163667-1-niharchaithanya@gmail.com>
Hi Nihar,
kernel test robot noticed the following build errors:
[auto build test ERROR on staging/staging-testing]
url: https://github.com/intel-lab-lkp/linux/commits/Nihar-Chaithanya/staging-gpib-Add-error-handling/20241222-060646
base: staging/staging-testing
patch link: https://lore.kernel.org/r/20241221214822.163667-1-niharchaithanya%40gmail.com
patch subject: [PATCH v3] staging: gpib: Add error handling
config: s390-allyesconfig (https://download.01.org/0day-ci/archive/20241222/202412221424.WIjKFIPf-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241222/202412221424.WIjKFIPf-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/202412221424.WIjKFIPf-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/staging/gpib/fmh_gpib/fmh_gpib.c: In function 'fmh_gpib_init_module':
>> drivers/staging/gpib/fmh_gpib/fmh_gpib.c:1694:17: error: label 'err_platform_driver' used but not defined
1694 | goto err_platform_driver;
| ^~~~
vim +/err_platform_driver +1694 drivers/staging/gpib/fmh_gpib/fmh_gpib.c
1687
1688 static int __init fmh_gpib_init_module(void)
1689 {
1690 int result;
1691
1692 result = platform_driver_register(&fmh_gpib_platform_driver);
1693 if (result)
> 1694 goto err_platform_driver;
1695
1696 result = pci_register_driver(&fmh_gpib_pci_driver);
1697 if (result)
1698 goto err_pci_driver;
1699
1700 result = gpib_register_driver(&fmh_gpib_unaccel_interface, THIS_MODULE);
1701 if (result)
1702 goto err_unaccel;
1703
1704 result = gpib_register_driver(&fmh_gpib_interface, THIS_MODULE);
1705 if (result)
1706 goto err_interface;
1707
1708 result = gpib_register_driver(&fmh_gpib_pci_unaccel_interface, THIS_MODULE);
1709 if (result)
1710 goto err_pci_unaccel;
1711
1712 result = gpib_register_driver(&fmh_gpib_pci_interface, THIS_MODULE);
1713 if (result)
1714 goto err_pci;
1715
1716 return 0;
1717
1718 err_pci:
1719 gpib_unregister_driver(&fmh_gpib_pci_unaccel_interface);
1720 err_pci_unaccel:
1721 gpib_unregister_driver(&fmh_gpib_interface);
1722 err_interface:
1723 gpib_unregister_driver(&fmh_gpib_unaccel_interface);
1724 err_unaccel:
1725 pci_unregister_driver(&fmh_gpib_pci_driver);
1726 err_pci_driver:
1727 platform_driver_unregister(&fmh_gpib_platform_driver);
1728
1729 return result;
1730 }
1731
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-12-22 7:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-21 21:48 [PATCH v3] staging: gpib: Add error handling Nihar Chaithanya
2024-12-22 6:08 ` Greg KH
2024-12-22 6:24 ` kernel test robot
2024-12-22 7:06 ` kernel 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=202412221424.WIjKFIPf-lkp@intel.com \
--to=lkp@intel.com \
--cc=arnd@arndb.de \
--cc=dan.carpenter@linaro.org \
--cc=dominik.karol.piatkowski@protonmail.com \
--cc=dpenkler@gmail.com \
--cc=everestkc@everestkc.com.np \
--cc=gregkh@linuxfoundation.org \
--cc=kees@ijzerbout.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=m.omerfarukbulut@gmail.com \
--cc=nathan@kernel.org \
--cc=niharchaithanya@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=roheetchavan@gmail.com \
--cc=skhan@linuxfoundation.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.