From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vladimir Gurevich Date: Sat, 22 Mar 2003 16:51:19 -0800 Subject: [U-Boot-Users] [RFD] Consistent debugging output structure References: <20030319183207.GT28544@pengutronix.de> <20030322102847.GF28544@pengutronix.de> <3E7CD718.2090506@paulidav.org> Message-ID: <3E7D0507.8030209@paulidav.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Oops, sorry for the typo: Vladimir Gurevich wrote: > enum { > DEBUG_VAG01_INIT = 0x00000001, /* Initialization sequence */ > DEBUG_VAG01_INTR = 0x00000002, /* Interrupt handling */ > DEBUG_VAG01_API = 0x00000004, /* Standard API calls (open, */ > /* close, read, write, etc. */ > DEBUG_VAG01_RX = 0x00000008, /* Receive data path */ > DEBUG_VAG01_TX = 0x00000010, /* Transmit data path */ > DEBUG_VAG01_RX_DATA = 0x00000014, /* Dump received data */ > DEBUG_VAG01_TX_DATA = 0x00000018, /* Dumt transmit data */ > DEBUG_VAG01_RELOCK = 0x00000020, /* Debug relock thread */ > }; Should be enum { DEBUG_VAG01_INIT = 0x00000001, /* Initialization sequence */ DEBUG_VAG01_INTR = 0x00000002, /* Interrupt handling */ DEBUG_VAG01_API = 0x00000004, /* Standard API calls (open, */ /* close, read, write, etc. */ DEBUG_VAG01_RX = 0x00000008, /* Receive data path */ DEBUG_VAG01_TX = 0x00000010, /* Transmit data path */ DEBUG_VAG01_RX_DATA = 0x00000020, /* Dump received data */ DEBUG_VAG01_TX_DATA = 0x00000040, /* Dump transmit data */ DEBUG_VAG01_RELOCK = 0x00000080, /* Debug relock thread */ }; Regards, Vladimir