From patchwork Mon Oct 21 09:06:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3075721 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@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 81A5BBF924 for ; Mon, 21 Oct 2013 09:08:03 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F17F720218 for ; Mon, 21 Oct 2013 09:07:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8A9B920411 for ; Mon, 21 Oct 2013 09:07:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754509Ab3JUJHx (ORCPT ); Mon, 21 Oct 2013 05:07:53 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:58178 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754676Ab3JUJHw (ORCPT ); Mon, 21 Oct 2013 05:07:52 -0400 Received: by mail-pa0-f54.google.com with SMTP id kx10so7733681pab.27 for ; Mon, 21 Oct 2013 02:07:51 -0700 (PDT) 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=VZe0HFLMZJ7hyNmiTgpKt2DqjK+g0wasFg5VBOVTJFE=; b=WURc75qT8JGbunDO7kFWUhOGbBldTMKfD2O68frpgnl1zdtLDMyzLeWdsOB/nGrBT8 ll/Ic045aBvan/qGLA+8tIsJRx8aEQlHk9rb8RTL1D3CIKkYihN7+1D1KORhbAhA/L11 98rbaW3FjuGXQ3vCNWzM+08Y2VFwg573Q8TchQamvIO1ZeCD1yWzNtbc1Mdeekm2FXzM 97/4pi4DKHqiaB6G9xN7+ORypdpbrlBScnIx/mwF42jfGVzejGMnWLx0286P0FE1ybb8 li0tJFwiyCujS9IpNhL4Od0SUqygXcHgxiFjygvf6WzC4BFBg+0bZCQ31GkRj14SyUh/ keyA== X-Gm-Message-State: ALoCoQkeGgD6anZ1LTZWvNGmkJd3iyUSFKlfJybR7tYq2FgbUsDjytimgQ+kT48q/+H2PHNTwihL X-Received: by 10.66.231.42 with SMTP id td10mr1768478pac.144.1382346471388; Mon, 21 Oct 2013 02:07:51 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id xs1sm24175727pac.7.2013.10.21.02.07.49 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 21 Oct 2013 02:07:51 -0700 (PDT) From: Sachin Kamat To: linux-pci@vger.kernel.org Cc: bhelgaas@google.com, sachin.kamat@linaro.org, Jingoo Han Subject: [PATCH 3/3] PCI: exynos: Remove redundant of_match_ptr Date: Mon, 21 Oct 2013 14:36:43 +0530 Message-Id: <1382346403-29576-3-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1382346403-29576-1-git-send-email-sachin.kamat@linaro.org> References: <1382346403-29576-1-git-send-email-sachin.kamat@linaro.org> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 This driver is DT only. Hence of_match_ptr is not required. Signed-off-by: Sachin Kamat Cc: Jingoo Han Acked-by: Jingoo Han --- drivers/pci/host/pci-exynos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/host/pci-exynos.c b/drivers/pci/host/pci-exynos.c index ee692c2..c4798fb 100644 --- a/drivers/pci/host/pci-exynos.c +++ b/drivers/pci/host/pci-exynos.c @@ -647,7 +647,7 @@ static struct platform_driver exynos_pcie_driver = { .driver = { .name = "exynos-pcie", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(exynos_pcie_of_match), + .of_match_table = exynos_pcie_of_match, }, };