Browse Source

USB: cxacru: Fix printk format flag in error message

"#%x" should have been "%#x"

Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Simon Arlott 17 years ago
parent
commit
230ffc75b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/usb/atm/cxacru.c

+ 1 - 1
drivers/usb/atm/cxacru.c

@@ -602,7 +602,7 @@ static int cxacru_cm_get_array(struct cxacru_data *instance, enum cxacru_cm_requ
 			offd = le32_to_cpu(buf[offb++]);
 			offd = le32_to_cpu(buf[offb++]);
 			if (offd >= size) {
 			if (offd >= size) {
 				if (printk_ratelimit())
 				if (printk_ratelimit())
-					usb_err(instance->usbatm, "wrong index #%x in response to cm #%x\n",
+					usb_err(instance->usbatm, "wrong index %#x in response to cm %#x\n",
 						offd, cm);
 						offd, cm);
 				ret = -EIO;
 				ret = -EIO;
 				goto cleanup;
 				goto cleanup;