From patchwork Tue Dec 22 07:02:50 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roman Fietze X-Patchwork-Id: 41588 X-Patchwork-Delegate: grant.likely@secretlab.ca Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 53969B846F for ; Tue, 22 Dec 2009 18:03:07 +1100 (EST) Received: from coyote.quickmin.net (coyote.quickmin.net [217.14.112.24]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp.quickmin.de", Issuer "smtp.quickmin.de" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 94995B7BA5 for ; Tue, 22 Dec 2009 18:02:56 +1100 (EST) Received: (qmail 66878 invoked from network); 22 Dec 2009 08:02:52 +0100 Received: by simscan 1.4.0 ppid: 66874, pid: 66875, t: 0.0131s scanners: clamav: 0.95.2/m:49/d:8609 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=telemotive.de; b=tCS6/il3egnXTSpR9DT/PZcq2eLwQ2tKBlgBSAVLcivRSI34k0lqQD3BBh6m36A2l5oU+U8oNYPzqcyR5yI3YeC2vGu/+En9jZ7ChkaVbj+gLUGYO1Z6fqR+9x9g/zzVsBrnHL7yv8YrE4aWTXzjr/xYnXM/38ojbokQw7LPpjQ= ; Received: from mail.telemotive.de (62.206.149.210) by coyote.quickmin.net with SMTP; 22 Dec 2009 08:02:52 +0100 Received: from alderan.mit.telemotive.de ([192.168.5.15]) by mail.telemotive.de (Lotus Domino Release 8.0.2FP1) with ESMTP id 2009122208025087-823 ; Tue, 22 Dec 2009 08:02:50 +0100 Received: from rfietze.mit.telemotive.de (rfietze.mit.telemotive.de [192.168.5.33]) by alderan.mit.telemotive.de (Postfix) with ESMTP id 30552BADFD for ; Tue, 22 Dec 2009 08:02:51 +0100 (CET) Received: by rfietze.mit.telemotive.de (Postfix, from userid 10062) id E35F31820A3D; Tue, 22 Dec 2009 08:02:50 +0100 (CET) From: Roman Fietze Organization: Telemotive AG To: linuxppc-dev@lists.ozlabs.org Subject: [PATCH 05/13] powerpc/5200: LocalPlus driver: fix DMA TX interrupt request User-Agent: KMail/1.12.4 (Linux/2.6.27.39-0.2-default; KDE/4.3.4; x86_64; ; ) References: <200912081339.50722.roman.fietze@telemotive.de> <200912220755.09756.roman.fietze@telemotive.de> In-Reply-To: <200912220755.09756.roman.fietze@telemotive.de> MIME-Version: 1.0 Message-ID: <200912220802.50090.roman.fietze@telemotive.de> Date: Tue, 22 Dec 2009 08:02:50 +0100 X-MIMETrack: Itemize by SMTP Server on muc/Telemotive(Release 8.0.2FP1|January 12, 2009) at 22.12.2009 08:02:50, Serialize by Router on muc/Telemotive(Release 8.0.2FP1|January 12, 2009) at 22.12.2009 08:02:51, Serialize complete at 22.12.2009 08:02:51 X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Signed-off-by: Roman Fietze --- arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c index 2fd1f3f..1e4f725 100644 --- a/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c +++ b/arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c @@ -460,9 +460,9 @@ mpc52xx_lpbfifo_probe(struct of_device *op, const struct of_device_id *match) if (!lpbfifo.bcom_tx_task) goto err_bcom_tx; - rc = request_irq(bcom_get_task_irq(lpbfifo.bcom_rx_task), + rc = request_irq(bcom_get_task_irq(lpbfifo.bcom_tx_task), mpc52xx_lpbfifo_bcom_irq, 0, - "mpc52xx-lpbfifo-rx", &lpbfifo); + "mpc52xx-lpbfifo-tx", &lpbfifo); if (rc) goto err_bcom_tx_irq;