From 00b10abb627c7d7b90bfc7757bf2ddd9c038e91d Mon Sep 17 00:00:00 2001 From: DizzyOfCRN Date: Sat, 16 Aug 2014 15:00:00 +0000 Subject: [PATCH] Try not to be so different and return similar strings as the rest. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@49452 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/usb/pciusbhc/xhci/pcixhci_commands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rom/usb/pciusbhc/xhci/pcixhci_commands.c b/rom/usb/pciusbhc/xhci/pcixhci_commands.c index 8998cb2ede..ee477215b6 100644 --- a/rom/usb/pciusbhc/xhci/pcixhci_commands.c +++ b/rom/usb/pciusbhc/xhci/pcixhci_commands.c @@ -65,7 +65,7 @@ WORD cmdQueryDevice(struct IOUsbHWReq *ioreq) { count++; break; case UHA_ProductName: - *((STRPTR *) tag->ti_Data) = "PCI XHCI"; + *((STRPTR *) tag->ti_Data) = "PCI XHCI USB 3.0 Host Controller Driver"; count++; break; case UHA_Description: @@ -329,7 +329,7 @@ WORD cmdControlXFerRootHub(struct IOUsbHWReq *ioreq) { case 2: { char roothubname[100]; - sprintf(roothubname, "PCIXHCI root hub (USB%x.%x)", AROS_LE2WORD(unit->roothub.devdesc.bcdUSB>>8)&0xf, AROS_LE2WORD(unit->roothub.devdesc.bcdUSB>>4)&0xf); + snprintf(roothubname, 99, "PCI Root Hub Unit %d", unit->number) ; return cmdGetString(ioreq, roothubname); break; } -- 2.11.4.GIT