From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753492AbbJZJ1H (ORCPT ); Mon, 26 Oct 2015 05:27:07 -0400 Received: from mga09.intel.com ([134.134.136.24]:3636 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752531AbbJZJ1E (ORCPT ); Mon, 26 Oct 2015 05:27:04 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,200,1444719600"; d="scan'208";a="835061576" Date: Mon, 26 Oct 2015 17:25:00 +0800 From: kbuild test robot To: Heiko Schocher Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org, Heiko Schocher , devicetree@vger.kernel.org, Liam Girdwood , Mark Brown Subject: [PATCH] regulator, dt: fix platform_no_drv_owner.cocci warnings Message-ID: <20151026092500.GA41277@xian> References: <201510261705.slEEEVgs%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1445849174-3446-1-git-send-email-hs@denx.de> 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/regulator/tps65023-regulator.c:543: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: Heiko Schocher Signed-off-by: Fengguang Wu --- tps65023-regulator.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/regulator/tps65023-regulator.c +++ b/drivers/regulator/tps65023-regulator.c @@ -540,7 +540,6 @@ static int tps_65023_probe(struct i2c_cl static struct i2c_driver tps_65023_i2c_driver = { .driver = { .name = "tps65023", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(tps6502x_of_match), }, .probe = tps_65023_probe,