/* * 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 #elif linux #include #elif PMON #include #elif _CFE_ #include #else #error #endif #endif /* _et_dbg_ */