Linux 2.6.20.7
[linux/fpc-iii.git] / drivers / net / wireless / zd1211rw / zd_def.h
blobfb22f62cf1f3d5238e3a0526fd355c1de01a17fb
1 /* zd_def.h
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #ifndef _ZD_DEF_H
19 #define _ZD_DEF_H
21 #include <linux/kernel.h>
22 #include <linux/stringify.h>
23 #include <linux/device.h>
24 #include <linux/kernel.h>
26 #define dev_printk_f(level, dev, fmt, args...) \
27 dev_printk(level, dev, "%s() " fmt, __func__, ##args)
29 #ifdef DEBUG
30 # define dev_dbg_f(dev, fmt, args...) \
31 dev_printk_f(KERN_DEBUG, dev, fmt, ## args)
32 #else
33 # define dev_dbg_f(dev, fmt, args...) do { (void)(dev); } while (0)
34 #endif /* DEBUG */
36 #ifdef DEBUG
37 # define ZD_ASSERT(x) \
38 do { \
39 if (!(x)) { \
40 pr_debug("%s:%d ASSERT %s VIOLATED!\n", \
41 __FILE__, __LINE__, __stringify(x)); \
42 dump_stack(); \
43 } \
44 } while (0)
45 #else
46 # define ZD_ASSERT(x) do { } while (0)
47 #endif
49 #ifdef DEBUG
50 # define ZD_MEMCLEAR(pointer, size) memset((pointer), 0xff, (size))
51 #else
52 # define ZD_MEMCLEAR(pointer, size) do { } while (0)
53 #endif
55 #endif /* _ZD_DEF_H */