From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: [PATCH v2 02/10] igb_uio: use standard uio naming Date: Fri, 06 Jun 2014 16:50:30 -0700 Message-ID: <20140606235103.632913900@networkplumber.org> References: <20140606235028.189345212@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Cc: dev-VfR2kkLFssw@public.gmane.org To: Alan Carew Return-path: Content-Disposition: inline; filename=igb_uio-name.patch List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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 --- a/lib/librte_eal/linuxapp/igb_uio/igb_uio.c +++ b/lib/librte_eal/linuxapp/igb_uio/igb_uio.c @@ -509,7 +509,7 @@ } /* 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;