From patchwork Fri Apr 19 18:55:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zang Roy-R61911 X-Patchwork-Id: 237916 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id 43F262C131E for ; Fri, 19 Apr 2013 21:01:05 +1000 (EST) Received: from va3outboundpool.messaging.microsoft.com (va3ehsobe005.messaging.microsoft.com [216.32.180.31]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client CN "mail.global.frontbridge.com", Issuer "Microsoft Secure Server Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id B97472C0C20 for ; Fri, 19 Apr 2013 20:56:27 +1000 (EST) Received: from mail213-va3-R.bigfish.com (10.7.14.242) by VA3EHSOBE002.bigfish.com (10.7.40.22) with Microsoft SMTP Server id 14.1.225.23; Fri, 19 Apr 2013 10:56:25 +0000 Received: from mail213-va3 (localhost [127.0.0.1]) by mail213-va3-R.bigfish.com (Postfix) with ESMTP id 324ED5401B4; Fri, 19 Apr 2013 10:56:25 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 0 X-BigFish: VS0(zzzz1f42h1fc6h1ee6h1de0h1fdah1202h1e76h1d1ah1d2ahzz8275bhz2dh2a8h668h839hd24he5bhf0ah1288h12a5h12a9h12bdh12e5h137ah139eh13b6h1441h1504h1537h162dh1631h1758h1898h18e1h1946h19b5h1ad9h1b0ah1155h) Received: from mail213-va3 (localhost.localdomain [127.0.0.1]) by mail213-va3 (MessageSwitch) id 1366368983222038_24856; Fri, 19 Apr 2013 10:56:23 +0000 (UTC) Received: from VA3EHSMHS021.bigfish.com (unknown [10.7.14.243]) by mail213-va3.bigfish.com (Postfix) with ESMTP id 2A5766C0043; Fri, 19 Apr 2013 10:56:23 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by VA3EHSMHS021.bigfish.com (10.7.99.31) with Microsoft SMTP Server (TLS) id 14.1.225.23; Fri, 19 Apr 2013 10:56:22 +0000 Received: from tx30smr01.am.freescale.net (10.81.153.31) by 039-SN1MMR1-001.039d.mgd.msft.net (10.84.1.13) with Microsoft SMTP Server (TLS) id 14.2.328.11; Fri, 19 Apr 2013 10:56:21 +0000 Received: from Dell64.ap.freescale.net (Dell64.ap.freescale.net [10.193.20.81]) by tx30smr01.am.freescale.net (8.14.3/8.14.0) with ESMTP id r3JAuHWO010627; Fri, 19 Apr 2013 03:56:18 -0700 From: Roy Zang To: Subject: [PATCH] powerpc/fsl-pci: fix setup_pci_atmu() parameter issue Date: Sat, 20 Apr 2013 02:55:33 +0800 Message-ID: <1366397734-1416-1-git-send-email-tie-fei.zang@freescale.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-OriginatorOrg: freescale.com X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" setup_pci_atmu() only has one parameter and remove the extra one, or build will fail due to un-match. Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index 40ffe29..f823304 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c @@ -978,7 +978,7 @@ static int fsl_pci_resume(struct device *dev) return -ENODEV; } - setup_pci_atmu(hose, &pci_rsrc); + setup_pci_atmu(hose); return 0; }