vsllink driver compile fails with'vsllink_debug_buffer' defined but not used

USB communication is handled by code under versaloon directory.
So _DEBUG_USB_COMMS_  should not be used in vsllink.c.
Attachment is the patch.
__archive__
simonqian.openocd 2011-08-31 01:52:20 +08:00 committed by Øyvind Harboe
parent c8926d1457
commit 7e20eda944
1 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ struct vsllink {
static struct vsllink *vsllink_usb_open(void);
static void vsllink_usb_close(struct vsllink *vsllink);
#if defined _DEBUG_USB_COMMS_ || defined _DEBUG_JTAG_IO_
#if defined _DEBUG_JTAG_IO_
static void vsllink_debug_buffer(uint8_t *buffer, int length);
#endif
@ -832,7 +832,7 @@ static void vsllink_usb_close(struct vsllink *vsllink)
#define BYTES_PER_LINE 16
#if defined _DEBUG_USB_COMMS_ || defined _DEBUG_JTAG_IO_
#if defined _DEBUG_JTAG_IO_
static void vsllink_debug_buffer(uint8_t *buffer, int length)
{
char line[81];
@ -849,7 +849,7 @@ static void vsllink_debug_buffer(uint8_t *buffer, int length)
LOG_DEBUG("%s", line);
}
}
#endif /* _DEBUG_USB_COMMS_ || _DEBUG_JTAG_IO_ */
#endif /* _DEBUG_JTAG_IO_ */
static const struct command_registration vsllink_command_handlers[] = {
{