]> xenbits.xensource.com Git - seabios.git/commitdiff
Minor - increase debug level of some USB debug statements.
authorKevin O'Connor <kevin@koconnor.net>
Mon, 15 Feb 2010 00:07:43 +0000 (19:07 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Mon, 15 Feb 2010 00:07:43 +0000 (19:07 -0500)
src/usb-hid.c
src/usb.c

index b714685f26514d8544c55f47dae541ed3d1e666b..48dec8b4680f13393a3dd81872a582cc7f0690ab 100644 (file)
@@ -174,7 +174,7 @@ procmodkey(u8 mods, u8 flags)
 static void noinline
 handle_key(struct keyevent *data)
 {
-    dprintf(5, "Got key %x %x\n", data->modifiers, data->keys[0]);
+    dprintf(9, "Got key %x %x\n", data->modifiers, data->keys[0]);
 
     // Load old keys.
     u16 ebda_seg = get_ebda_seg();
index 7d4520ea8b32a752850a434c7b4fdcece59ff062..710899166cf12ca7f153c818ba7c0630c299c036 100644 (file)
--- a/src/usb.c
+++ b/src/usb.c
@@ -148,7 +148,7 @@ set_configuration(u32 endp, u16 val)
 int
 configure_usb_device(struct usb_s *cntl, int lowspeed)
 {
-    dprintf(1, "config_usb: %p %d\n", cntl, lowspeed);
+    dprintf(3, "config_usb: %p %d\n", cntl, lowspeed);
 
     // Get device info
     u32 endp = mkendp(cntl, 0, 0, lowspeed, 8);