Index: uspace/lib/usbhost/src/device_keeper.c
===================================================================
--- uspace/lib/usbhost/src/device_keeper.c	(revision f58154c58b1a88c507d74c1843e1e6a5884650b9)
+++ uspace/lib/usbhost/src/device_keeper.c	(revision 17fc40c3a80b87898548f369664cd1e822f98ab7)
@@ -158,5 +158,6 @@
 }
 
-/** Find devman handled assigned to USB address.
+/** Find devman handle assigned to USB address.
+ * Intentionally refuse to find handle of default address.
  *
  * @param[in] instance Device keeper structure to use.
@@ -170,5 +171,5 @@
 	assert(instance);
 	fibril_mutex_lock(&instance->guard);
-	if ((address < 0) || (address >= USB_ADDRESS_COUNT)) {
+	if ((address <= 0) || (address >= USB_ADDRESS_COUNT)) {
 		fibril_mutex_unlock(&instance->guard);
 		return false;
