2 * drivers/net/ethernet/ibm/emac/debug.h
4 * Driver for PowerPC 4xx on-chip ethernet controller, debug print routines.
6 * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
7 * <benh@kernel.crashing.org>
9 * Based on the arch/ppc version of the driver:
11 * Copyright (c) 2004, 2005 Zultys Technologies
12 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
20 #ifndef __IBM_NEWEMAC_DEBUG_H
21 #define __IBM_NEWEMAC_DEBUG_H
23 #include <linux/init.h>
27 #if defined(CONFIG_IBM_EMAC_DEBUG)
33 #define EMAC_DBG(d, name, fmt, arg...) \
34 printk(KERN_DEBUG #name "%pOF: " fmt, d->ofdev->dev.of_node, ## arg)
37 # define DBG(d,f,x...) EMAC_DBG(d, emac, f, ##x)
38 # define MAL_DBG(d,f,x...) EMAC_DBG(d, mal, f, ##x)
39 # define ZMII_DBG(d,f,x...) EMAC_DBG(d, zmii, f, ##x)
40 # define RGMII_DBG(d,f,x...) EMAC_DBG(d, rgmii, f, ##x)
43 # define DBG(f,x...) ((void)0)
44 # define MAL_DBG(d,f,x...) ((void)0)
45 # define ZMII_DBG(d,f,x...) ((void)0)
46 # define RGMII_DBG(d,f,x...) ((void)0)
49 # define DBG2(d,f,x...) DBG(d,f, ##x)
50 # define MAL_DBG2(d,f,x...) MAL_DBG(d,f, ##x)
51 # define ZMII_DBG2(d,f,x...) ZMII_DBG(d,f, ##x)
52 # define RGMII_DBG2(d,f,x...) RGMII_DBG(d,f, ##x)
54 # define DBG2(f,x...) ((void)0)
55 # define MAL_DBG2(d,f,x...) ((void)0)
56 # define ZMII_DBG2(d,f,x...) ((void)0)
57 # define RGMII_DBG2(d,f,x...) ((void)0)
60 #endif /* __IBM_NEWEMAC_DEBUG_H */