aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/atm/cxacru.c
diff options
context:
space:
mode:
authorSimon Arlott <simon@fire.lp0.eu>2008-07-12 22:19:48 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2008-08-13 17:32:52 -0700
commit230ffc75b7b842db5710d30d3a2fc61f9d6f50df (patch)
tree14fe09bbe8bd2504374ce7b9b794868799d086b5 /drivers/usb/atm/cxacru.c
parentUSB: usb-storage Motorola Phone Razr v3xx US_FL_FIX_CAPACITY patch (diff)
downloadlinux-dev-230ffc75b7b842db5710d30d3a2fc61f9d6f50df.tar.xz
linux-dev-230ffc75b7b842db5710d30d3a2fc61f9d6f50df.zip
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/atm/cxacru.c')
-rw-r--r--drivers/usb/atm/cxacru.c2
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
offd = le32_to_cpu(buf[offb++]);
if (offd >= size) {
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);
ret = -EIO;
goto cleanup;