From patchwork Mon Aug 7 23:29:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rob Herring (Arm)" X-Patchwork-Id: 798958 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xRDML3HpQz9s72 for ; Tue, 8 Aug 2017 09:31:58 +1000 (AEST) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3xRDML2HfhzDr5G for ; Tue, 8 Aug 2017 09:31:58 +1000 (AEST) X-Original-To: linuxppc-dev@lists.ozlabs.org Delivered-To: linuxppc-dev@lists.ozlabs.org Received: from mail-yw0-f196.google.com (mail-yw0-f196.google.com [209.85.161.196]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3xRDJQ4MtSzDqp8 for ; Tue, 8 Aug 2017 09:29:26 +1000 (AEST) Received: by mail-yw0-f196.google.com with SMTP id s143so1224525ywg.4 for ; Mon, 07 Aug 2017 16:29:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=3AE0nFasTphSvQJIQNnKXLMERjC4p9/ApRhFKZrBUvs=; b=tW3QWuxvo4+T+HpbQoD7ZLnYElMpDkbz932OzNnKmgvcljjz89L8we9zO8Yjj6Ht7O pfQNtLzJ0rnVtjkgZVbHs//LgJTRt2hCf83wvTQgA+PaJUiZqQY2LDU6uvhXS8lQ5ZoR Qm7D4j7oOCEL1OXxXcL8KcdSeTZL5uI1bJzB2gIJRlwEBtHTbqILGC5IGdSAZdAvvd9w /6N2kxGs9BpDg8nuh5oFo0C1zqsmEO9/7vcw5O3xM9BhrrGsjtgvkqobcI2Sdc26ATLW ecU8oDQaFRhsEP8WWRJP/Ha1ae9nEJYgRg259VXfkQJCU2NBmkhJZVveK7gUOAW8AwNk 8mOg== X-Gm-Message-State: AHYfb5j5Ehhy7JAH6oEvqIpUdCr3GoyShLqk9V84LLepf6XzcChtrZwr kwxXJvisndp/6w== X-Received: by 10.37.244.77 with SMTP id p13mr1850793ybe.116.1502148564483; Mon, 07 Aug 2017 16:29:24 -0700 (PDT) Received: from localhost.localdomain (24-223-123-72.static.usa-companies.net. [24.223.123.72]) by smtp.googlemail.com with ESMTPSA id r65sm3385342ywb.83.2017.08.07.16.29.23 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 07 Aug 2017 16:29:24 -0700 (PDT) From: Rob Herring To: Takashi Iwai Subject: [PATCH v3] sound: aoa: Convert to using %pOF instead of full_name Date: Mon, 7 Aug 2017 18:29:19 -0500 Message-Id: <20170807232919.30247-2-robh@kernel.org> X-Mailer: git-send-email 2.11.0 X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Johannes Berg , linuxppc-dev@lists.ozlabs.org, alsa-devel@alsa-project.org, Jaroslav Kysela Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" 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 Cc: Johannes Berg Cc: Jaroslav Kysela Cc: Takashi Iwai Cc: linuxppc-dev@lists.ozlabs.org Cc: alsa-devel@alsa-project.org --- v3: Split aoa to separate patch sound/aoa/codecs/tas.c | 4 ++-- 1 file 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);