From patchwork Thu Dec 19 08:43:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3375721 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.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 4A1FFC0D4A for ; Thu, 19 Dec 2013 08:47:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 425BD2060F for ; Thu, 19 Dec 2013 08:47:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 636132060E for ; Thu, 19 Dec 2013 08:47:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751536Ab3LSIq7 (ORCPT ); Thu, 19 Dec 2013 03:46:59 -0500 Received: from mail-pa0-f54.google.com ([209.85.220.54]:39445 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751089Ab3LSIq7 (ORCPT ); Thu, 19 Dec 2013 03:46:59 -0500 Received: by mail-pa0-f54.google.com with SMTP id rd3so878559pab.13 for ; Thu, 19 Dec 2013 00:46:58 -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=J4M+NO3LeUfXGRYyUdzBhOrGJG5IqDjdLnn72RC+JZT0kn76KFqpUdqEdGFpY6xhS3 dCiVzNGsUMVupCJ9pspIJykClK9RKq5mSsLn32DAiblQX9etlPFKejRf0oUopUcEbK3c 1/3CM9FV1D3+ucusdJUvwMP2EpR0jTinf2vAI07yOv7+XHh3NYg7nq03U5Mcc4IciE1N Iyp4E27w7D6nA9WN+7auYU1JuPLFf62rzedezsfzqa4Bzum2X6fkqJAJx10Jkz8pNuiF JldmQ3xJ6r96JCvzCpb4zfuDRRcXh9ILPOnVZe2fEK219MGXU0eYsQVSuJpxyESS6INN VpXQ== X-Gm-Message-State: ALoCoQmH7oseMbZh+LCIdlFW3cK3AAcXfpTWiVeLaoNnS0FovBUgoWJ9LKljAMhQaGk1tvIPSugz X-Received: by 10.66.121.201 with SMTP id lm9mr355212pab.80.1387442818783; Thu, 19 Dec 2013 00:46:58 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id oc9sm5520341pbb.10.2013.12.19.00.46.56 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 19 Dec 2013 00:46:58 -0800 (PST) From: Sachin Kamat To: linux-mmc@vger.kernel.org Cc: cjb@laptop.org, sachin.kamat@linaro.org Subject: [PATCH Resend 4/7] mmc: davinci: Remove redundant of_match_ptr Date: Thu, 19 Dec 2013 14:13:31 +0530 Message-Id: <1387442614-4193-4-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1387442614-4193-1-git-send-email-sachin.kamat@linaro.org> References: <1387442614-4193-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=-7.4 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,