diff options
author | Rob Herring <robh@kernel.org> | 2017-08-07 18:29:19 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-29 14:52:17 +0200 |
commit | 0be04a695b8ca111bc74efcd395b5b82e29753ae (patch) | |
tree | 1f4718c57ea94f8029756a20df97da72788a59f1 /sound/aoa | |
parent | e6b4c525d94e6fb28d5c4b9eb4016caa12f68841 (diff) | |
download | linux-next-0be04a695b8ca111bc74efcd395b5b82e29753ae.tar.gz |
ALSA: aoa: Convert to using %pOF instead of full_name
Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/aoa')
-rw-r--r-- | sound/aoa/codecs/tas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index 733b6365dad6..15c05755d270 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c @@ -905,8 +905,8 @@ static int tas_i2c_probe(struct i2c_client *client, goto fail; } printk(KERN_DEBUG - "snd-aoa-codec-tas: tas found, addr 0x%02x on %s\n", - (unsigned int)client->addr, node->full_name); + "snd-aoa-codec-tas: tas found, addr 0x%02x on %pOF\n", + (unsigned int)client->addr, node); return 0; fail: mutex_destroy(&tas->mtx); |