From patchwork Thu Jan 31 12:53:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Hebbar, Gururaja" X-Patchwork-Id: 2073551 Return-Path: X-Original-To: patchwork-davinci@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from arroyo.ext.ti.com (arroyo.ext.ti.com [192.94.94.40]) by patchwork2.kernel.org (Postfix) with ESMTP id ED0DDDF2E5 for ; Thu, 31 Jan 2013 12:55:54 +0000 (UTC) Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id r0VCqFD2024734; Thu, 31 Jan 2013 06:52:15 -0600 Received: from DLEE74.ent.ti.com (dlee74.ent.ti.com [157.170.170.8]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id r0VCqFT1007822; Thu, 31 Jan 2013 06:52:15 -0600 Received: from dlelxv24.itg.ti.com (172.17.1.199) by DLEE74.ent.ti.com (157.170.170.8) with Microsoft SMTP Server id 14.1.323.3; Thu, 31 Jan 2013 06:52:15 -0600 Received: from linux.omap.com (dlelxs01.itg.ti.com [157.170.227.31]) by dlelxv24.itg.ti.com (8.13.8/8.13.8) with ESMTP id r0VCqEFl001989; Thu, 31 Jan 2013 06:52:14 -0600 Received: from linux.omap.com (localhost [127.0.0.1]) by linux.omap.com (Postfix) with ESMTP id 1033D8062D; Thu, 31 Jan 2013 06:52:14 -0600 (CST) X-Original-To: davinci-linux-open-source@linux.davincidsp.com Delivered-To: davinci-linux-open-source@linux.davincidsp.com Received: from dbdp20.itg.ti.com (dbdp20.itg.ti.com [172.24.170.38]) by linux.omap.com (Postfix) with ESMTP id 5069480628 for ; Thu, 31 Jan 2013 06:52:05 -0600 (CST) Received: from DBDE71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id r0VCpxa6027148; Thu, 31 Jan 2013 18:22:04 +0530 (IST) Received: from dbdp32.itg.ti.com (172.24.170.251) by DBDE71.ent.ti.com (172.24.170.149) with Microsoft SMTP Server id 14.1.323.3; Thu, 31 Jan 2013 18:22:04 +0530 Received: from ucmsshproxy.india.ext.ti.com (dbdp20.itg.ti.com [172.24.170.38]) by dbdp32.itg.ti.com (8.13.8/8.13.8) with SMTP id r0VCq3tb016751; Thu, 31 Jan 2013 18:22:03 +0530 Received: from symphony.india.ext.ti.com (unknown [192.168.247.13]) by ucmsshproxy.india.ext.ti.com (Postfix) with ESMTP id AE2AF158006; Thu, 31 Jan 2013 18:22:03 +0530 (IST) Received: from ubuntu-psp-linux.india.ext.ti.com (ubuntu-psp-linux [192.168.247.46]) by symphony.india.ext.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id r0VCq2R01361; Thu, 31 Jan 2013 18:22:03 +0530 (IST) From: Hebbar Gururaja To: , , , Subject: [PATCH v4 3/3] ASoC: davinci: remove __dev* attributes Date: Thu, 31 Jan 2013 18:23:06 +0530 Message-ID: <1359636786-7056-4-git-send-email-gururaja.hebbar@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1359636786-7056-1-git-send-email-gururaja.hebbar@ti.com> References: <1359636786-7056-1-git-send-email-gururaja.hebbar@ti.com> MIME-Version: 1.0 CC: , , , , , , , X-BeenThere: davinci-linux-open-source@linux.davincidsp.com X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: Errors-To: davinci-linux-open-source-bounces@linux.davincidsp.com CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devexit_p and __devexit. Signed-off-by: Hebbar Gururaja --- Changes in v4 - No change Changes in v3 - New patch :100644 100644 e6009a4... 37b8e78... M sound/soc/davinci/davinci-evm.c sound/soc/davinci/davinci-evm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/davinci/davinci-evm.c b/sound/soc/davinci/davinci-evm.c index e6009a4..37b8e78 100644 --- a/sound/soc/davinci/davinci-evm.c +++ b/sound/soc/davinci/davinci-evm.c @@ -390,7 +390,7 @@ static int davinci_evm_probe(struct platform_device *pdev) return ret; } -static int __devexit davinci_evm_remove(struct platform_device *pdev) +static int davinci_evm_remove(struct platform_device *pdev) { struct snd_soc_card *card = platform_get_drvdata(pdev); @@ -401,7 +401,7 @@ static int __devexit davinci_evm_remove(struct platform_device *pdev) static struct platform_driver davinci_evm_driver = { .probe = davinci_evm_probe, - .remove = __devexit_p(davinci_evm_remove), + .remove = davinci_evm_remove, .driver = { .name = "davinci_evm", .owner = THIS_MODULE,