igb_uio: use standard uio naming
authorStephen Hemminger <stephen@networkplumber.org>
Fri, 6 Jun 2014 23:50:30 +0000 (16:50 -0700)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 18 Jul 2014 23:54:41 +0000 (01:54 +0200)
Don't put capitialization and space in name since it will show
up in /proc/interrupts. Instead use driver name to follow the
conventions used in the kernel by other drivers.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_eal/linuxapp/igb_uio/igb_uio.c

index 4460b6b..55049b2 100644 (file)
@@ -589,7 +589,7 @@ igbuio_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
        }
 
        /* fill uio infos */
-       udev->info.name = "Intel IGB UIO";
+       udev->info.name = "igb_uio";
        udev->info.version = "0.1";
        udev->info.handler = igbuio_pci_irqhandler;
        udev->info.irqcontrol = igbuio_pci_irqcontrol;