From patchwork Sat Jan 24 00:33:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Torokhov X-Patchwork-Id: 5698421 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 74F06C058D for ; Sat, 24 Jan 2015 00:33:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B2D8B202F0 for ; Sat, 24 Jan 2015 00:33:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DA0742013D for ; Sat, 24 Jan 2015 00:33:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751827AbbAXAdq (ORCPT ); Fri, 23 Jan 2015 19:33:46 -0500 Received: from mail-ie0-f173.google.com ([209.85.223.173]:43699 "EHLO mail-ie0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751036AbbAXAdp (ORCPT ); Fri, 23 Jan 2015 19:33:45 -0500 Received: by mail-ie0-f173.google.com with SMTP id tr6so421659ieb.4; Fri, 23 Jan 2015 16:33:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=K4pAM8UwfO+pfi34ss+SjENeaZ1Cbs+9DCfM1RmKcMU=; b=oFZc3r0AKzFhh7EyjO3cjmVNvwNfo2xzX/Yvk7KbC4TFIWK0hCtdc9pKMBDbWkEByf dvV8rwy8SZZ2YKAqWYsuPowpkIJquPrHwxf3myU0oaxn3JZ/RNRcePFgp4cdmwBwWNt6 m+sLWPdiKFpwRdg2D3ScdfZndzt3XSHpAP8dMQyEkPq3GKk6r4TiBLpjlM9Oq2To+hPL BrafOrCP8XCUHXiC5tO+EIfD9y3outknALCHCISP+vqZlSc3ZVUKTj2p125P+9n7Ly2+ gEP0cUh+xQKlhmLd/drzz4/EVSr2gKy4urHi29ojFV8CxsFLPT/EOWT6u+uriXB18Xgy hxfw== X-Received: by 10.42.54.5 with SMTP id p5mr11257461icg.37.1422059624618; Fri, 23 Jan 2015 16:33:44 -0800 (PST) Received: from dtor-ws ([2620:0:1000:1301:d918:4fc8:281e:4012]) by mx.google.com with ESMTPSA id f1sm1521136iga.1.2015.01.23.16.33.42 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 23 Jan 2015 16:33:43 -0800 (PST) Date: Fri, 23 Jan 2015 16:33:40 -0800 From: Dmitry Torokhov To: Ulf Hansson Cc: Seungwon Jeon , Jaehoon Chung , Chris Ball , Kukjin Kim , Alim Akhtar , Abhilash Kesavan , Beomho Seo , linux-mmc@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p() Message-ID: <20150124003340.GA16286@dtor-ws> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP dw_mci_pltfm_remove() is not (nor should it be) marked as __exit, so we should not be using __exit_p() wrapper with it. Signed-off-by: Dmitry Torokhov Reviewed-by: Doug Anderson Tested-by: Doug Anderson --- drivers/mmc/host/dw_mmc-exynos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c index 12a5eaa..fe32948 100644 --- a/drivers/mmc/host/dw_mmc-exynos.c +++ b/drivers/mmc/host/dw_mmc-exynos.c @@ -422,7 +422,7 @@ static const struct dev_pm_ops dw_mci_exynos_pmops = { static struct platform_driver dw_mci_exynos_pltfm_driver = { .probe = dw_mci_exynos_probe, - .remove = __exit_p(dw_mci_pltfm_remove), + .remove = dw_mci_pltfm_remove, .driver = { .name = "dwmmc_exynos", .of_match_table = dw_mci_exynos_match,