USB: remove err() macro from more usb drivers
USB should not be having it's own printk macros, so remove err() and use the system-wide standard of dev_err() wherever possible. In the few places that will not work out, use a basic printk(). Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@ -218,7 +218,7 @@ static int __devinit isp1761_pci_probe(struct pci_dev *dev,
|
||||
* and reading back and checking the contents are same or not
|
||||
*/
|
||||
if (reg_data != 0xFACE) {
|
||||
err("scratch register mismatch %x", reg_data);
|
||||
dev_err(&dev->dev, "scratch register mismatch %x\n", reg_data);
|
||||
goto clean;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user