2 * carl9170 firmware - used by the ar9170 wireless device
4 * printf and his friends...
6 * Copyright (c) 2000-2005 ZyDAS Technology Corporation
7 * Copyright (c) 2007-2009 Atheros Communications, Inc.
8 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
9 * Copyright 2009-2011 Christian Lamparter <chunkeey@googlemail.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef __CARL9170FW_PRINTF_H
27 #define __CARL9170FW_PRINTF_H
36 #ifdef CONFIG_CARL9170FW_PRINTF
37 void __attribute__((format (printf, 1, 2))) tfp_printf(const char *fmt, ...);
39 #define printf tfp_printf
42 void __attribute__((format (printf, 1, 2))) min_printf(const char *fmt, ...);
44 #define printf min_printf
45 #endif /* CONFIG_CARL9170FW_PRINTF */
47 #define PRINT(fmt, args...) \
49 printf(fmt, ## args); \
52 #define INFO(fmt, args...) PRINT(fmt, ## args)
54 #define ERR(fmt, args...) PRINT(CARL9170_ERR_MAGIC fmt, ## args)
56 #ifdef CONFIG_CARL9170FW_DEBUG
57 #define DBG(fmt, args...) PRINT(fmt, ## args)
59 #define DBG(...) do { } while (0);
63 * NB: even though the MACRO is called "stall". It isn't supposed
64 * to stall since this will render the device unresponsive, until
65 * someone pulls the plug.
69 #define BUG(fmt, args...) \
71 PRINT(CARL9170_BUG_MAGIC" %s()@%d \"" fmt "\"" , \
72 __func__, __LINE__, ## args); \
76 #define BUG_ON(condition) \
78 int __ret = !!(condition); \
79 if (unlikely(!!(__ret))) \
84 static inline __inline void putcharacter(const char c __unused)
86 #ifdef CONFIG_CARL9170FW_DEBUG_USB
88 #endif /* CONFIG_CARL9170FW_DEBUG_USB */
90 #ifdef CONFIG_CARL9170FW_DEBUG_UART
92 #endif /* CONFIG_CARL9170FW_DEBUG_UART */
95 static inline __inline void print_hex_dump(const void *buf __unused, int len __unused)
97 #ifdef CONFIG_CARL9170FW_DEBUG_USB
98 usb_print_hex_dump(buf, len);
99 #endif /* CONFIG_CARL9170FW_DEBUG_USB */
101 #ifdef CONFIG_CARL9170FW_DEBUG_UART
102 uart_print_hex_dump(buf, len);
103 #endif /* CONFIG_CARL9170FW_DEBUG_UART */
106 #endif /* __CARL9170FW_PRINTF_H */