preps for marcans bt hax
[ppcskel.git] / usb / core / usb.c
index 45ceba2ea51a4175010c4c774c858227717dec12..c98681ba014d4ca1aa379a934693d54a41614421 100644 (file)
@@ -313,8 +313,6 @@ u8 usb_get_configuration(struct usb_device *dev)
 {
        cleargbuf();
        usb_control_msg(dev, 0x80, GET_CONFIGURATION, 0, 0, 4, gbuf, 0);
-       printf("=============\nafter usb_get_configuration:\n");
-       hexdump((void*) gbuf, 8);
        return gbuf[0];
 }
 
@@ -322,8 +320,6 @@ s8 usb_set_configuration(struct usb_device *dev, u8 configuration)
 {
        cleargbuf();
        usb_control_msg(dev, 0x00, SET_CONFIGURATION, configuration, 0, 0, gbuf, 0);
-       printf("=============\nafter usb_set_configuration:\n");
-       hexdump((void*) gbuf, 8);
        wait_ms(20);
        return 0;
 }