Received: by 2002:a05:6a10:6744:0:0:0:0 with SMTP id w4csp3529848pxu; Sun, 11 Oct 2020 13:24:04 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxcxQ2CspkJd7yX9Tvq7O7lVZYCnYMiiU365KgVn7Cl+6/k1r1PhheTQY9RuyX6LRwmIE/X X-Received: by 2002:a17:906:d89:: with SMTP id m9mr24136770eji.18.1602447844592; Sun, 11 Oct 2020 13:24:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1602447844; cv=none; d=google.com; s=arc-20160816; b=rI/FFTgrxYBJNVEozSTEZYJSQu2/+R5KxERBbtjsUWH4WChrNQ/dsIc6DZn/YOKast RZ3EZMC3rg17tlVxg9hNLKfQt+gqE9dUg7ctitb/8Dp+9Eg1dsDWEXyLBTPo7rxtfr5M r5ty5rTsM8gUiKTjiC57I7ftjm8hpX5H1/VR0p5i+3oVpmAzPG0Lka+aXDWV9UCy1c43 PrSrAMZkXz/7yIKks+08K7Ej0mkkExm/+idbxG78EveSNAQm3nsEsPkaiZcUbatMb/X0 Ns7EaIptBdFpLjY0m6F6oEW2IaA6VhBRIexDT7frQRoxb/fQCCumtyr1CqHhBRNdNjkx 9lsQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:references:in-reply-to:message-id:date:subject :cc:to:from; bh=G9Ttuhqhv0KNQP+YN9/0+LJSikRtZ9fFFfrItIafbCA=; b=Eu6L93FfAkpIxAOTQAxorvYfJFgQC47HMsFx3bhGbsgb2rfWbs26wSN/Ri9g/cCf4Z 1ofePoxdIuhqm7Lc2KSYbQtUtrV6itMWeipUGVelU7RZWygWQ4YYCkC0a+pEUjUgHThm KPOfHj/78T94EdAu8uk6OC9Vgjo06O2auVmpg1MIRV8S0EI1TVuxkYXdTdjj5LYriYWK YEYJRR1Qw0g3hAXGXu39HOZ2gV/WlkoCBidUr3egpjccxSIfYvqKTtQoWunZIJ8O85WL GYczto2oe11X4pC1ojWJOiArK6HUI+K/M2ubpcc57DZXdLayAtTzO5dHRAT03Zdmnijr rejQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id s2si10552853edy.490.2020.10.11.13.23.33; Sun, 11 Oct 2020 13:24:04 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387655AbgJKKDE (ORCPT + 99 others); Sun, 11 Oct 2020 06:03:04 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:27418 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387572AbgJKKCt (ORCPT ); Sun, 11 Oct 2020 06:02:49 -0400 X-IronPort-AV: E=Sophos;i="5.77,362,1596492000"; d="scan'208";a="471981624" Received: from palace.rsr.lip6.fr (HELO palace.lip6.fr) ([132.227.105.202]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/AES256-SHA256; 11 Oct 2020 12:02:41 +0200 From: Julia Lawall To: Krzysztof Kozlowski Cc: =?UTF-8?q?Valdis=20Kl=C4=93tnieks?= , Joe Perches , Thomas Gleixner , kernel-janitors@vger.kernel.org, Sangbeom Kim , Sylwester Nawrocki , Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: [PATCH 6/8] ASoC: samsung: snow: use semicolons rather than commas to separate statements Date: Sun, 11 Oct 2020 11:19:37 +0200 Message-Id: <1602407979-29038-7-git-send-email-Julia.Lawall@inria.fr> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1602407979-29038-1-git-send-email-Julia.Lawall@inria.fr> References: <1602407979-29038-1-git-send-email-Julia.Lawall@inria.fr> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Replace commas with semicolons. What is done is essentially described by the following Coccinelle semantic patch (http://coccinelle.lip6.fr/): // @@ expression e1,e2; @@ e1 -, +; e2 ... when any // Signed-off-by: Julia Lawall --- sound/soc/samsung/snow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/samsung/snow.c b/sound/soc/samsung/snow.c index 07163f07c6d5..989af624dd11 100644 --- a/sound/soc/samsung/snow.c +++ b/sound/soc/samsung/snow.c @@ -189,7 +189,7 @@ static int snow_probe(struct platform_device *pdev) return PTR_ERR(priv->clk_i2s_bus); } } else { - link->codecs->dai_name = "HiFi", + link->codecs->dai_name = "HiFi"; link->cpus->of_node = of_parse_phandle(dev->of_node, "samsung,i2s-controller", 0);