From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751443AbbJKRNv (ORCPT ); Sun, 11 Oct 2015 13:13:51 -0400 Received: from mga14.intel.com ([192.55.52.115]:47844 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751433AbbJKRNt (ORCPT ); Sun, 11 Oct 2015 13:13:49 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,667,1437462000"; d="scan'208";a="662166677" Date: Mon, 12 Oct 2015 01:12:20 +0800 From: kbuild test robot To: Nicolas Saenz Julienne Cc: kbuild-all@01.org, linus.walleij@linaro.org, gnurou@gmail.com, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] gpio: fix platform_no_drv_owner.cocci warnings Message-ID: <20151011171220.GA93323@lkp-ib04.intel.com> References: <201510120157.r6FjOUkX%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1444581663-31066-1-git-send-email-nicolassaenzj@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org drivers/gpio/gpio-tps65218.c:153:3-8: No need to set .owner here. The core will do it. Remove .owner field if calls are used which set it automatically Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci CC: Nicolas Saenz Julienne Signed-off-by: Fengguang Wu --- gpio-tps65218.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/gpio/gpio-tps65218.c +++ b/drivers/gpio/gpio-tps65218.c @@ -150,7 +150,6 @@ MODULE_DEVICE_TABLE(of, tps65218_dt_matc static struct platform_driver tps65218_gpio_driver = { .driver = { .name = "tps65218-gpio", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(tps65218_dt_match) }, .probe = tps65218_gpio_probe,