aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb/6fire
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2013-08-07 10:55:14 -0400
committerTakashi Iwai <tiwai@suse.de>2013-08-08 06:04:18 -0400
commit663819fb7d7e21f45431db1a2c0180bf2388ed2f (patch)
tree80a67b67614e7abdddba30d457114b8eec00bc37 /sound/usb/6fire
parente7e58df8ef3c9edb09a240084b4e0523c12bcb71 (diff)
ALSA: don't push static constants on stack for %*ph
There is no need to pass constants via stack. The width may be explicitly specified in the format. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/6fire')
-rw-r--r--sound/usb/6fire/firmware.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/6fire/firmware.c b/sound/usb/6fire/firmware.c
index b9defcdeb7ef..780bf3f62d28 100644
--- a/sound/usb/6fire/firmware.c
+++ b/sound/usb/6fire/firmware.c
@@ -346,10 +346,10 @@ static int usb6fire_fw_check(u8 *version)
346 if (!memcmp(version, known_fw_versions + i, 2)) 346 if (!memcmp(version, known_fw_versions + i, 2))
347 return 0; 347 return 0;
348 348
349 snd_printk(KERN_ERR PREFIX "invalid fimware version in device: %*ph. " 349 snd_printk(KERN_ERR PREFIX "invalid fimware version in device: %4ph. "
350 "please reconnect to power. if this failure " 350 "please reconnect to power. if this failure "
351 "still happens, check your firmware installation.", 351 "still happens, check your firmware installation.",
352 4, version); 352 version);
353 return -EINVAL; 353 return -EINVAL;
354} 354}
355 355