blob: 976c818f5717a52e3bf04cf325ad3cb824cf375c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* Minimal debug/trace/assert driver definitions for
* Broadcom Home Networking Division 10/100 Mbit/s Ethernet
* Device Driver.
*
* Copyright 2007, Broadcom Corporation
* All Rights Reserved.
*
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
* the contents of this file may not be disclosed to third parties, copied
* or duplicated in any form, in whole or in part, without the prior
* written permission of Broadcom Corporation.
* $Id: et_dbg.h,v 1.1.1.1 2008/07/21 09:14:16 james26_jang Exp $
*/
#ifndef _et_dbg_
#define _et_dbg_
#define ET_ERROR(args)
#define ET_TRACE(args)
#define ET_PRHDR(msg, eh, len, unit)
#define ET_PRPKT(msg, buf, len, unit)
extern uint32 et_msg_level;
#define ET_LOG(fmt, a1, a2)
/* include port-specific tunables */
#ifdef NDIS
#include <et_ndis.h>
#elif linux
#include <et_linux.h>
#elif PMON
#include <et_pmon.h>
#elif _CFE_
#include <et_cfe.h>
#else
#error
#endif
#endif /* _et_dbg_ */
|