From patchwork Tue Feb 25 09:48:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3714251 Return-Path: X-Original-To: patchwork-linux-mmc@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 1A2579F2ED for ; Tue, 25 Feb 2014 09:54:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3C9032016C for ; Tue, 25 Feb 2014 09:54:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5335C2013D for ; Tue, 25 Feb 2014 09:54:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751317AbaBYJyU (ORCPT ); Tue, 25 Feb 2014 04:54:20 -0500 Received: from mail-pd0-f176.google.com ([209.85.192.176]:44879 "EHLO mail-pd0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750768AbaBYJyS (ORCPT ); Tue, 25 Feb 2014 04:54:18 -0500 Received: by mail-pd0-f176.google.com with SMTP id r10so465370pdi.7 for ; Tue, 25 Feb 2014 01:54:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Fcfgc7W/rgMyM/I6x9xNIFfUEMupSVQPzmAAlXAE2Dw=; b=cErB8uoXPPCTkPqAC3wzg0VSf5jb4NUceDgYP/y3YY3vPkPI7JI2hnI/lPM3cD54oZ xwXYGzkMyupFqqJGQ6Lq37DaSf9QM9IR8WfNisr8T/1xLX6U19n5l6UnBLkuYvm6vixH ZLQYxKqLG+CP6QeTW7aKSayTDrSPpGURtjFRkM2lSrdxJw1GLrykqM797ncz0tphD7ot lKVfOYbuEmXKDmfEgKColsy8lLpQxsBkO+uZ8QZDYS1rBAW6g06ajP/DrV/BFTAIOoX/ RAF2l3uG1mNHyLdfzqNozLRP38I9R1hw/HwRmIzleEC/QAN1fS+2mE93F6y8d1CoaaJE VeMg== X-Gm-Message-State: ALoCoQnGxmRvLd4C8V/1Ey2MDi2OoRn9gjMNREZ4QOwR/XPq75f7WyxkZf10jFON/tpDCPuTZXfF X-Received: by 10.66.159.233 with SMTP id xf9mr531826pab.139.1393322057580; Tue, 25 Feb 2014 01:54:17 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id qq5sm8804447pbb.24.2014.02.25.01.54.14 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 25 Feb 2014 01:54:17 -0800 (PST) From: Sachin Kamat To: linux-mmc@vger.kernel.org Cc: ulf.hansson@linaro.org, chris@printf.net, sachin.kamat@linaro.org Subject: [PATCH 04/10] mmc: davinci: Remove redundant of_match_ptr Date: Tue, 25 Feb 2014 15:18:22 +0530 Message-Id: <1393321708-9719-4-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1393321708-9719-1-git-send-email-sachin.kamat@linaro.org> References: <1393321708-9719-1-git-send-email-sachin.kamat@linaro.org> 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.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 The data structure of_match_ptr() protects is always compiled in. Hence of_match_ptr() is not needed. Signed-off-by: Sachin Kamat --- drivers/mmc/host/davinci_mmc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c index d6153740b77f..5d4c5e0fba2f 100644 --- a/drivers/mmc/host/davinci_mmc.c +++ b/drivers/mmc/host/davinci_mmc.c @@ -1192,7 +1192,7 @@ static struct davinci_mmc_config struct device_node *np; struct davinci_mmc_config *pdata = pdev->dev.platform_data; const struct of_device_id *match = - of_match_device(of_match_ptr(davinci_mmc_dt_ids), &pdev->dev); + of_match_device(davinci_mmc_dt_ids, &pdev->dev); u32 data; np = pdev->dev.of_node; @@ -1468,7 +1468,7 @@ static struct platform_driver davinci_mmcsd_driver = { .name = "davinci_mmc", .owner = THIS_MODULE, .pm = davinci_mmcsd_pm_ops, - .of_match_table = of_match_ptr(davinci_mmc_dt_ids), + .of_match_table = davinci_mmc_dt_ids, }, .remove = __exit_p(davinci_mmcsd_remove), .id_table = davinci_mmc_devtype,