summaryrefslogtreecommitdiff
path: root/payloads/libpayload/drivers/usb/usbhid.c
diff options
context:
space:
mode:
authorDave Frodin <dave.frodin@se-eng.com>2012-12-11 13:08:07 -0700
committerAnton Kochkov <anton.kochkov@gmail.com>2012-12-18 19:59:22 +0100
commit6bf11cf50c2b682f8c09a53af774588123b250b6 (patch)
tree8b6b43411f551cff98623c3606c74e7a1a3413b9 /payloads/libpayload/drivers/usb/usbhid.c
parent8024b655507441646b2158fc61532364cbe65972 (diff)
downloadcoreboot-6bf11cf50c2b682f8c09a53af774588123b250b6.tar.xz
libpayload: Use usb_debug() to show USB messages
Previously printf()'s were used to show USB messages which results in lots of USB information being shown when it isn't needed. This will now use the usb_debug() printing funtion that already exists in usb.h. Change-Id: I2199814de3327417417eb2e26a660f4a5557cb9f Signed-off-by: Dave Frodin <dave.frodin@se-eng.com> Reviewed-on: http://review.coreboot.org/2044 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'payloads/libpayload/drivers/usb/usbhid.c')
-rw-r--r--payloads/libpayload/drivers/usb/usbhid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/drivers/usb/usbhid.c b/payloads/libpayload/drivers/usb/usbhid.c
index 6af25680bc..ee8ba63842 100644
--- a/payloads/libpayload/drivers/usb/usbhid.c
+++ b/payloads/libpayload/drivers/usb/usbhid.c
@@ -407,11 +407,11 @@ static int usb_hid_set_layout (const char *country)
/* Found, changing keyboard layout */
map = &keyboard_layouts[i];
- printf(" Keyboard layout '%s'\n", map->country);
+ usb_debug(" Keyboard layout '%s'\n", map->country);
return 0;
}
- printf(" Keyboard layout '%s' not found, using '%s'\n",
+ usb_debug(" Keyboard layout '%s' not found, using '%s'\n",
country, map->country);
/* Nothing found, not changed */