mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mfd: mc13xxx-core: %pF is only for function pointers
Use %pS for actual addresses, otherwise you'll get bad output on arches like ppc64 where %pF expects a function descriptor. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
eac8a5c91b
commit
5d5a7bffd0
1 changed files with 3 additions and 3 deletions
|
@ -51,19 +51,19 @@
|
|||
void mc13xxx_lock(struct mc13xxx *mc13xxx)
|
||||
{
|
||||
if (!mutex_trylock(&mc13xxx->lock)) {
|
||||
dev_dbg(mc13xxx->dev, "wait for %s from %pf\n",
|
||||
dev_dbg(mc13xxx->dev, "wait for %s from %ps\n",
|
||||
__func__, __builtin_return_address(0));
|
||||
|
||||
mutex_lock(&mc13xxx->lock);
|
||||
}
|
||||
dev_dbg(mc13xxx->dev, "%s from %pf\n",
|
||||
dev_dbg(mc13xxx->dev, "%s from %ps\n",
|
||||
__func__, __builtin_return_address(0));
|
||||
}
|
||||
EXPORT_SYMBOL(mc13xxx_lock);
|
||||
|
||||
void mc13xxx_unlock(struct mc13xxx *mc13xxx)
|
||||
{
|
||||
dev_dbg(mc13xxx->dev, "%s from %pf\n",
|
||||
dev_dbg(mc13xxx->dev, "%s from %ps\n",
|
||||
__func__, __builtin_return_address(0));
|
||||
mutex_unlock(&mc13xxx->lock);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue