From patchwork Thu Sep 11 13:34:39 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: ehea: fix phyp debugging typo Date: Thu, 11 Sep 2008 03:34:39 -0000 From: Sebastien Dugue X-Patchwork-Id: 236 Message-Id: <1221140080-9853-2-git-send-email-sebastien.dugue@bull.net> To: linuxppc-dev@ozlabs.org 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 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; }