diff options
author | Joe Perches <joe@perches.com> | 2013-07-25 11:53:25 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-08-27 10:49:38 +0200 |
commit | 8e33a52fadddcfc9f85594a7ab4802c60ee0046a (patch) | |
tree | f2510524fc3e84abec72ffad269de35c852e64d3 /sound | |
parent | 51d8a7b0a04effbb67fd9afcda4757b0c061fc11 (diff) | |
download | op-kernel-dev-8e33a52fadddcfc9f85594a7ab4802c60ee0046a.zip op-kernel-dev-8e33a52fadddcfc9f85594a7ab4802c60ee0046a.tar.gz |
treewide: Fix printks with 0x%#
Using 0x%# emits 0x0x. Only one is necessary.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/ens1370.c | 2 | ||||
-rw-r--r-- | sound/pci/via82xx.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ens1370.c b/sound/pci/ens1370.c index ca8929b..61262f3 100644 --- a/sound/pci/ens1370.c +++ b/sound/pci/ens1370.c @@ -1842,7 +1842,7 @@ static int snd_ensoniq_create_gameport(struct ensoniq *ensoniq, int dev) default: if (!request_region(io_port, 8, "ens137x: gameport")) { - printk(KERN_WARNING "ens137x: gameport io port 0x%#x in use\n", + printk(KERN_WARNING "ens137x: gameport io port %#x in use\n", io_port); return -EBUSY; } diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 3c511d0..5ae6f04 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c @@ -1940,7 +1940,7 @@ static int snd_via686_create_gameport(struct via82xx *chip, unsigned char *legac r = request_region(JOYSTICK_ADDR, 8, "VIA686 gameport"); if (!r) { - printk(KERN_WARNING "via82xx: cannot reserve joystick port 0x%#x\n", + printk(KERN_WARNING "via82xx: cannot reserve joystick port %#x\n", JOYSTICK_ADDR); return -EBUSY; } |