From 1a3f9a9ff333d30095fd4a46a4bcddc6290412e8 Mon Sep 17 00:00:00 2001 From: Eric Decker Date: Wed, 1 Sep 2010 09:34:50 +1200 Subject: [PATCH] fet: always show chip name. --- fet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fet.c b/fet.c index fc14105..b48ba1a 100644 --- a/fet.c +++ b/fet.c @@ -477,7 +477,7 @@ static int xfer(struct fet_device *dev, static void show_dev_info(const char *name, const struct fet_device *dev) { - printc_dbg("Device: %s\n", name); + printc("Device: %s\n", name); printc_dbg("Code memory starts at 0x%04x\n", dev->code_start); printc_dbg("Number of breakpoints: %d\n", dev->base.max_breakpoints); }