Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 148710 | Differences between
and this patch

Collapse All | Expand All

(-)qc-usb-0.6.4.old/qc-driver.c (-3 / +2 lines)
Lines 867-873 Link Here
867
867
868
	out += sprintf(out, "\tGeneral driver status\n");
868
	out += sprintf(out, "\tGeneral driver status\n");
869
	out += sprintf(out, "Driver version   : %s\n", VERSION);
869
	out += sprintf(out, "Driver version   : %s\n", VERSION);
870
	out += sprintf(out, "Kernel version   : %s\n", UTS_RELEASE);
871
	if (qc->dev!=NULL) {
870
	if (qc->dev!=NULL) {
872
	out += sprintf(out, "Device Id        : %04X:%04X\n", (int)GET_VENDORID(qc), (int)GET_PRODUCTID(qc));
871
	out += sprintf(out, "Device Id        : %04X:%04X\n", (int)GET_VENDORID(qc), (int)GET_PRODUCTID(qc));
873
	out += sprintf(out, "USB bus number   : %i\n", qc->dev->bus->busnum);
872
	out += sprintf(out, "USB bus number   : %i\n", qc->dev->bus->busnum);
Lines 3266-3273 Link Here
3266
3265
3267
	/* We found a QuickCam */
3266
	/* We found a QuickCam */
3268
	PRINTK(KERN_INFO,"QuickCam USB camera found (driver version %s)", VERSION);
3267
	PRINTK(KERN_INFO,"QuickCam USB camera found (driver version %s)", VERSION);
3269
	PRINTK(KERN_INFO,"Kernel:%s bus:%i class:%02X subclass:%02X vendor:%04X product:%04X",
3268
	PRINTK(KERN_INFO,"bus:%i class:%02X subclass:%02X vendor:%04X product:%04X",
3270
		UTS_RELEASE, usbdev->bus->busnum, ifacedesc->bInterfaceClass, ifacedesc->bInterfaceSubClass,
3269
			usbdev->bus->busnum, ifacedesc->bInterfaceClass, ifacedesc->bInterfaceSubClass,
3271
		usbdev->descriptor.idVendor, usbdev->descriptor.idProduct);
3270
		usbdev->descriptor.idVendor, usbdev->descriptor.idProduct);
3272
3271
3273
	/* The interface is claimed (bound) automatically to us when we return from this function (without error code) */
3272
	/* The interface is claimed (bound) automatically to us when we return from this function (without error code) */

Return to bug 148710