Index: uspace/drv/bus/usb/ehci/main.c
===================================================================
--- uspace/drv/bus/usb/ehci/main.c	(revision 4942d6336ae42d5d07312279d6b6e25cbd0aac34)
+++ uspace/drv/bus/usb/ehci/main.c	(revision 2ef8023ab6ae067070010a24c97a48158b82d6d3)
@@ -83,9 +83,9 @@
 static int ehci_dev_add(ddf_dev_t *device);
 
-static driver_ops_t ehci_driver_ops = {
+static const driver_ops_t ehci_driver_ops = {
 	.dev_add = ehci_dev_add,
 };
 
-static driver_t ehci_driver = {
+static const driver_t ehci_driver = {
 	.name = NAME,
 	.driver_ops = &ehci_driver_ops
Index: uspace/drv/bus/usb/ohci/main.c
===================================================================
--- uspace/drv/bus/usb/ohci/main.c	(revision 4942d6336ae42d5d07312279d6b6e25cbd0aac34)
+++ uspace/drv/bus/usb/ohci/main.c	(revision 2ef8023ab6ae067070010a24c97a48158b82d6d3)
@@ -104,9 +104,9 @@
 }
 
-static driver_ops_t ohci_driver_ops = {
+static const driver_ops_t ohci_driver_ops = {
 	.dev_add = ohci_dev_add,
 };
 
-static driver_t ohci_driver = {
+static const driver_t ohci_driver = {
 	.name = NAME,
 	.driver_ops = &ohci_driver_ops
Index: uspace/drv/bus/usb/uhci/main.c
===================================================================
--- uspace/drv/bus/usb/uhci/main.c	(revision 4942d6336ae42d5d07312279d6b6e25cbd0aac34)
+++ uspace/drv/bus/usb/uhci/main.c	(revision 2ef8023ab6ae067070010a24c97a48158b82d6d3)
@@ -84,9 +84,9 @@
 static int uhci_dev_add(ddf_dev_t *device);
 
-static driver_ops_t uhci_driver_ops = {
+static const driver_ops_t uhci_driver_ops = {
 	.dev_add = uhci_dev_add,
 };
 
-static driver_t uhci_driver = {
+static const driver_t uhci_driver = {
 	.name = NAME,
 	.driver_ops = &uhci_driver_ops
