Index: uspace/drv/usbhub/ports.c
===================================================================
--- uspace/drv/usbhub/ports.c	(revision 173922f36af5ebde07fa62551ee0a9e77b3844f3)
+++ uspace/drv/usbhub/ports.c	(revision 63862a00a280f0c116e76bbd495e6877fe8f1e4b)
@@ -95,5 +95,5 @@
  * @param port port number, starting from 1
  */
-void usb_hub_process_interrupt(usb_hub_info_t *hub,
+void usb_hub_process_port_interrupt(usb_hub_info_t *hub,
     uint16_t port) {
 	usb_log_debug("Interrupt at port %zu\n", (size_t) port);
Index: uspace/drv/usbhub/ports.h
===================================================================
--- uspace/drv/usbhub/ports.h	(revision 173922f36af5ebde07fa62551ee0a9e77b3844f3)
+++ uspace/drv/usbhub/ports.h	(revision 63862a00a280f0c116e76bbd495e6877fe8f1e4b)
@@ -70,5 +70,5 @@
 
 
-void usb_hub_process_interrupt(usb_hub_info_t *hub,
+void usb_hub_process_port_interrupt(usb_hub_info_t *hub,
 	uint16_t port);
 
Index: uspace/drv/usbhub/usbhub.c
===================================================================
--- uspace/drv/usbhub/usbhub.c	(revision 173922f36af5ebde07fa62551ee0a9e77b3844f3)
+++ uspace/drv/usbhub/usbhub.c	(revision 63862a00a280f0c116e76bbd495e6877fe8f1e4b)
@@ -168,5 +168,5 @@
 		bool change = (change_bitmap[port / 8] >> (port % 8)) % 2;
 		if (change) {
-			usb_hub_process_interrupt(hub, port);
+			usb_hub_process_port_interrupt(hub, port);
 		}
 	}
@@ -266,11 +266,6 @@
 
 		if (!has_individual_port_powering) {
-			usb_log_debug("Has_global powering\n");
-			opResult = usb_hub_set_feature(hub_info->control_pipe,
-			    USB_HUB_FEATURE_C_HUB_LOCAL_POWER);
-			if (opResult != EOK) {
-				usb_log_error("Cannot power hub: %s\n",
-				    str_error(opResult));
-			}
+			//this setting actually makes no difference
+			usb_log_debug("Hub has global powering\n");
 		}
 
@@ -280,5 +275,5 @@
 			    port, USB_HUB_FEATURE_PORT_POWER);
 			if (opResult != EOK) {
-				usb_log_error("cannot power on port %zu: %s.\n",
+				usb_log_error("Cannot power on port %zu: %s.\n",
 				    port, str_error(opResult));
 			}
