aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-02-14 19:07:43 -0500
committerKevin O'Connor <kevin@koconnor.net>2010-02-14 19:07:43 -0500
commit78523310ad4166597b0f2fbbfcfc915a7ca22fa5 (patch)
tree3eab642615ac4862e97a4402294e1cc35f24d575
parentba94a68d273fa82015fb56d4c9410047cf59c21b (diff)
downloadseabios-78523310ad4166597b0f2fbbfcfc915a7ca22fa5.tar.gz
Minor - increase debug level of some USB debug statements.
-rw-r--r--src/usb-hid.c2
-rw-r--r--src/usb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/usb-hid.c b/src/usb-hid.c
index b714685..48dec8b 100644
--- a/src/usb-hid.c
+++ b/src/usb-hid.c
@@ -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();
diff --git a/src/usb.c b/src/usb.c
index 7d4520e..7108991 100644
--- 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);