ALSA: core: Use %pS printk format for direct addresses

The debug functions uses wrongly the %pF instead of the %pS printk format
specifier for printing symbols for the address returned by
_builtin_return_address(0). Fix it for the ia64, ppc64 and parisc64
architectures.

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Helge Deller and committed by
Takashi Iwai
c8445589 ba2186e4

+2 -2
+2 -2
sound/core/device.c
··· 128 128 if (dev) 129 129 __snd_device_disconnect(dev); 130 130 else 131 - dev_dbg(card->dev, "device disconnect %p (from %pF), not found\n", 131 + dev_dbg(card->dev, "device disconnect %p (from %pS), not found\n", 132 132 device_data, __builtin_return_address(0)); 133 133 } 134 134 EXPORT_SYMBOL_GPL(snd_device_disconnect); ··· 152 152 if (dev) 153 153 __snd_device_free(dev); 154 154 else 155 - dev_dbg(card->dev, "device free %p (from %pF), not found\n", 155 + dev_dbg(card->dev, "device free %p (from %pS), not found\n", 156 156 device_data, __builtin_return_address(0)); 157 157 } 158 158 EXPORT_SYMBOL(snd_device_free);