USB: Remove check for UHCI in get_usb_pipe_for_id kdl command.

The bus managers check that the pipe belongs to them in their
respective debugger commands.
This commit is contained in:
Michael Lotz 2014-08-31 11:01:13 +02:00
parent 4182d2cadf
commit 21c0d3131d

@ -31,10 +31,6 @@ debug_get_pipe_for_id(int argc, char **argv)
if (!object || (object->Type() & USB_OBJECT_PIPE) == 0)
return 3;
// check if we support debug transfers for this pipe (only on UHCI for now)
if (object->GetBusManager()->TypeName()[0] != 'u')
return 4;
set_debug_variable("_usbPipe", (uint64)object);
return 0;
}