From patchwork Thu Nov 6 05:16:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Manish Badarkhe X-Patchwork-Id: 5241851 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 6E5699F387 for ; Thu, 6 Nov 2014 13:01:19 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 87ED32010F for ; Thu, 6 Nov 2014 13:01:18 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 479A820108 for ; Thu, 6 Nov 2014 13:01:17 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 665E8265312; Thu, 6 Nov 2014 14:01:16 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id 84014260718; Thu, 6 Nov 2014 14:00:15 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id B884326506E; Thu, 6 Nov 2014 06:17:10 +0100 (CET) Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by alsa0.perex.cz (Postfix) with ESMTP id 75C4D2606FD for ; Thu, 6 Nov 2014 06:17:02 +0100 (CET) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id sA65GvHj026592; Wed, 5 Nov 2014 23:16:57 -0600 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id sA65GvTj007048; Wed, 5 Nov 2014 23:16:57 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Wed, 5 Nov 2014 23:16:57 -0600 Received: from uda0131987 (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id sA65GuA8002331; Wed, 5 Nov 2014 23:16:57 -0600 Received: from charu by uda0131987 with local (Exim 4.76) (envelope-from ) id 1XmFRI-0000yi-66; Thu, 06 Nov 2014 10:46:56 +0530 From: Manish Badarkhe To: , , Date: Thu, 6 Nov 2014 10:46:56 +0530 Message-ID: <1415251016-3730-1-git-send-email-manishvb@ti.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 06 Nov 2014 14:00:11 +0100 Cc: peter.ujfalusi@ti.com, tiwai@suse.de, manishvb@ti.com, jsarha@ti.com Subject: [alsa-devel] [PATCH] ASoC: tlv320aic3x: Remove '.owner' field of driver X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Remove '.owner' field of driver structure as it is going to be filled via "module_i2c_driver" call. Signed-off-by: Manish Badarkhe --- :100644 100644 0307909... 191b423... M sound/soc/codecs/tlv320aic31xx.c sound/soc/codecs/tlv320aic31xx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index 0307909..191b423 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c @@ -1303,7 +1303,6 @@ MODULE_DEVICE_TABLE(i2c, aic31xx_i2c_id); static struct i2c_driver aic31xx_i2c_driver = { .driver = { .name = "tlv320aic31xx-codec", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(tlv320aic31xx_of_match), }, .probe = aic31xx_i2c_probe,