All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Uwe Kleine-König" <uwe@kleine-koenig.org>,
	"Tomas Winkler" <tomas.winkler@intel.com>,
	"Arnd Bergmann" <arnd@arndb.de>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	"Wim Van Sebroeck" <wim@linux-watchdog.org>,
	"Guenter Roeck" <linux@roeck-us.net>
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
	netdev@vger.kernel.org, linux-watchdog@vger.kernel.org
Subject: Re: [PATCH v1 2/2] mei: bus: change remove callback to return void
Date: Mon, 8 Feb 2021 08:16:16 +0800	[thread overview]
Message-ID: <202102080807.2qKB8jAR-lkp@intel.com> (raw)
In-Reply-To: <20210207222224.97547-2-uwe@kleine-koenig.org>

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

Hi "Uwe,

I love your patch! Yet something to improve:

[auto build test ERROR on 5c8fe583cce542aa0b84adc939ce85293de36e5e]

url:    https://github.com/0day-ci/linux/commits/Uwe-Kleine-K-nig/mei-bus-simplify-mei_cl_device_remove/20210208-062551
base:   5c8fe583cce542aa0b84adc939ce85293de36e5e
config: i386-randconfig-r032-20210208 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/a53f4d8c3937ee9db8a6f6335e6d562648f651f7
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Uwe-Kleine-K-nig/mei-bus-simplify-mei_cl_device_remove/20210208-062551
        git checkout a53f4d8c3937ee9db8a6f6335e6d562648f651f7
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

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/misc/mei/hdcp/mei_hdcp.c: In function 'mei_hdcp_remove':
>> drivers/misc/mei/hdcp/mei_hdcp.c:861:1: error: expected ';' before '}' token
     861 | }
         | ^


vim +861 drivers/misc/mei/hdcp/mei_hdcp.c

64e9bbdd9588ad Ramalingam C     2019-02-21  847  
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  848  static void mei_hdcp_remove(struct mei_cl_device *cldev)
64e9bbdd9588ad Ramalingam C     2019-02-21  849  {
fa301ad9fa8f6f Ramalingam C     2019-02-21  850  	struct i915_hdcp_comp_master *comp_master =
fa301ad9fa8f6f Ramalingam C     2019-02-21  851  						mei_cldev_get_drvdata(cldev);
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  852  	int ret;
fa301ad9fa8f6f Ramalingam C     2019-02-21  853  
fa301ad9fa8f6f Ramalingam C     2019-02-21  854  	component_master_del(&cldev->dev, &mei_component_master_ops);
fa301ad9fa8f6f Ramalingam C     2019-02-21  855  	kfree(comp_master);
fa301ad9fa8f6f Ramalingam C     2019-02-21  856  	mei_cldev_set_drvdata(cldev, NULL);
fa301ad9fa8f6f Ramalingam C     2019-02-21  857  
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  858  	ret = mei_cldev_disable(cldev);
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  859  	if (ret)
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  860  		dev_warn(&cldev->dev, "mei_cldev_disable() failed\n")
64e9bbdd9588ad Ramalingam C     2019-02-21 @861  }
64e9bbdd9588ad Ramalingam C     2019-02-21  862  

---
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: 39276 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v1 2/2] mei: bus: change remove callback to return void
Date: Mon, 08 Feb 2021 08:16:16 +0800	[thread overview]
Message-ID: <202102080807.2qKB8jAR-lkp@intel.com> (raw)
In-Reply-To: <20210207222224.97547-2-uwe@kleine-koenig.org>

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

Hi "Uwe,

I love your patch! Yet something to improve:

[auto build test ERROR on 5c8fe583cce542aa0b84adc939ce85293de36e5e]

url:    https://github.com/0day-ci/linux/commits/Uwe-Kleine-K-nig/mei-bus-simplify-mei_cl_device_remove/20210208-062551
base:   5c8fe583cce542aa0b84adc939ce85293de36e5e
config: i386-randconfig-r032-20210208 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/a53f4d8c3937ee9db8a6f6335e6d562648f651f7
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Uwe-Kleine-K-nig/mei-bus-simplify-mei_cl_device_remove/20210208-062551
        git checkout a53f4d8c3937ee9db8a6f6335e6d562648f651f7
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

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/misc/mei/hdcp/mei_hdcp.c: In function 'mei_hdcp_remove':
>> drivers/misc/mei/hdcp/mei_hdcp.c:861:1: error: expected ';' before '}' token
     861 | }
         | ^


vim +861 drivers/misc/mei/hdcp/mei_hdcp.c

64e9bbdd9588ad Ramalingam C     2019-02-21  847  
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  848  static void mei_hdcp_remove(struct mei_cl_device *cldev)
64e9bbdd9588ad Ramalingam C     2019-02-21  849  {
fa301ad9fa8f6f Ramalingam C     2019-02-21  850  	struct i915_hdcp_comp_master *comp_master =
fa301ad9fa8f6f Ramalingam C     2019-02-21  851  						mei_cldev_get_drvdata(cldev);
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  852  	int ret;
fa301ad9fa8f6f Ramalingam C     2019-02-21  853  
fa301ad9fa8f6f Ramalingam C     2019-02-21  854  	component_master_del(&cldev->dev, &mei_component_master_ops);
fa301ad9fa8f6f Ramalingam C     2019-02-21  855  	kfree(comp_master);
fa301ad9fa8f6f Ramalingam C     2019-02-21  856  	mei_cldev_set_drvdata(cldev, NULL);
fa301ad9fa8f6f Ramalingam C     2019-02-21  857  
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  858  	ret = mei_cldev_disable(cldev);
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  859  	if (ret)
a53f4d8c3937ee Uwe Kleine-König 2021-02-07  860  		dev_warn(&cldev->dev, "mei_cldev_disable() failed\n")
64e9bbdd9588ad Ramalingam C     2019-02-21 @861  }
64e9bbdd9588ad Ramalingam C     2019-02-21  862  

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

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

  parent reply	other threads:[~2021-02-08  0:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-07 22:22 [PATCH v1 1/2] mei: bus: simplify mei_cl_device_remove() Uwe Kleine-König
2021-02-07 22:22 ` [PATCH v1 2/2] mei: bus: change remove callback to return void Uwe Kleine-König
2021-02-07 23:48   ` Guenter Roeck
2021-02-08  0:16   ` kernel test robot [this message]
2021-02-08  0:16     ` kernel test robot
2021-02-08  0:16   ` kernel test robot
2021-02-08  0:16     ` kernel test robot
2021-02-08  0:17   ` kernel test robot
2021-02-08  0:17     ` 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=202102080807.2qKB8jAR-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=arnd@arndb.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=netdev@vger.kernel.org \
    --cc=tomas.winkler@intel.com \
    --cc=uwe@kleine-koenig.org \
    --cc=wim@linux-watchdog.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.