diff options
author | Simon Arlott <simon@fire.lp0.eu> | 2008-07-12 17:19:48 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-13 20:32:52 -0400 |
commit | 230ffc75b7b842db5710d30d3a2fc61f9d6f50df (patch) | |
tree | 14fe09bbe8bd2504374ce7b9b794868799d086b5 /drivers/usb | |
parent | 51cdc1c103dcb7cf1ca280843308a2e32847f9ce (diff) |
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>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/atm/cxacru.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c index 507a9bd0d77c..9aea43a8c4ad 100644 --- a/drivers/usb/atm/cxacru.c +++ b/drivers/usb/atm/cxacru.c | |||
@@ -602,7 +602,7 @@ static int cxacru_cm_get_array(struct cxacru_data *instance, enum cxacru_cm_requ | |||
602 | offd = le32_to_cpu(buf[offb++]); | 602 | offd = le32_to_cpu(buf[offb++]); |
603 | if (offd >= size) { | 603 | if (offd >= size) { |
604 | if (printk_ratelimit()) | 604 | if (printk_ratelimit()) |
605 | usb_err(instance->usbatm, "wrong index #%x in response to cm #%x\n", | 605 | usb_err(instance->usbatm, "wrong index %#x in response to cm %#x\n", |
606 | offd, cm); | 606 | offd, cm); |
607 | ret = -EIO; | 607 | ret = -EIO; |
608 | goto cleanup; | 608 | goto cleanup; |