From patchwork Thu Sep 11 13:34:39 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastien Dugue X-Patchwork-Id: 236 Return-Path: X-Original-To: patchwork@ozlabs.org Delivered-To: patchwork@ozlabs.org Received: from ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id BCAC7DE14C for ; Thu, 11 Sep 2008 23:35:58 +1000 (EST) X-Original-To: linuxppc-dev@ozlabs.org Delivered-To: linuxppc-dev@ozlabs.org Received: from ecfrec.frec.bull.fr (ecfrec.frec.bull.fr [129.183.4.8]) by ozlabs.org (Postfix) with ESMTP id 8EED4DDF3F for ; Thu, 11 Sep 2008 23:34:54 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id 9316419FDE2; Thu, 11 Sep 2008 15:34:43 +0200 (CEST) Received: from ecfrec.frec.bull.fr ([127.0.0.1]) by localhost (ecfrec.frec.bull.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32566-10; Thu, 11 Sep 2008 15:34:40 +0200 (CEST) Received: from cyclope.frec.bull.fr (cyclope.frec.bull.fr [129.183.4.9]) by ecfrec.frec.bull.fr (Postfix) with ESMTP id BED3119FDD8; Thu, 11 Sep 2008 15:34:40 +0200 (CEST) Received: from localhost (frecb000686.frec.bull.fr [129.183.101.139]) by cyclope.frec.bull.fr (Postfix) with ESMTP id 72BDC27291; Thu, 11 Sep 2008 15:34:40 +0200 (CEST) Received: from dugues by localhost with local (Exim 4.68) (envelope-from ) id 1KdmJk-0002ZM-HJ; Thu, 11 Sep 2008 15:34:40 +0200 From: Sebastien Dugue To: linuxppc-dev@ozlabs.org Subject: [PATCH 1/2] ehea: fix phyp debugging typo Date: Thu, 11 Sep 2008 15:34:39 +0200 Message-Id: <1221140080-9853-2-git-send-email-sebastien.dugue@bull.net> X-Mailer: git-send-email 1.5.5.rc2.1.gc953.dirty In-Reply-To: <1221140080-9853-1-git-send-email-sebastien.dugue@bull.net> References: <1221140080-9853-1-git-send-email-sebastien.dugue@bull.net> X-Virus-Scanned: by amavisd-new at frec.bull.fr Cc: tklein@de.ibm.com, tinytim@us.ibm.com, jeff@garzik.org, themann@de.ibm.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, jean-pierre.dion@bull.net, sebastien.dugue@bull.net, raisch@de.ibm.com, gilles.carry@ext.bull.net X-BeenThere: linuxppc-dev@ozlabs.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linuxppc-dev-bounces+patchwork=ozlabs.org@ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork=ozlabs.org@ozlabs.org Fix typo in ehea_h_query_ehea() which prevents building when DEBUG is on. Signed-off-by: Sebastien Dugue diff --git a/drivers/net/ehea/ehea_phyp.c b/drivers/net/ehea/ehea_phyp.c index 156eb63..2a33a61 100644 --- a/drivers/net/ehea/ehea_phyp.c +++ b/drivers/net/ehea/ehea_phyp.c @@ -535,7 +535,7 @@ u64 ehea_h_query_ehea(const u64 adapter_handle, void *cb_addr) cb_logaddr, /* R5 */ 0, 0, 0, 0, 0); /* R6-R10 */ #ifdef DEBUG - ehea_dmp(cb_addr, sizeof(struct hcp_query_ehea), "hcp_query_ehea"); + ehea_dump(cb_addr, sizeof(struct hcp_query_ehea), "hcp_query_ehea"); #endif return hret; }