From patchwork Tue Dec 20 10:21:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 9481347 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 669AB606DB for ; Tue, 20 Dec 2016 10:21:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5427F28402 for ; Tue, 20 Dec 2016 10:21:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 48F462840A; Tue, 20 Dec 2016 10:21:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EA8D828407 for ; Tue, 20 Dec 2016 10:21:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934651AbcLTKVb (ORCPT ); Tue, 20 Dec 2016 05:21:31 -0500 Received: from kirsty.vergenet.net ([202.4.237.240]:38133 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933423AbcLTKV3 (ORCPT ); Tue, 20 Dec 2016 05:21:29 -0500 Received: from penelope.kanocho.kobe.vergenet.net (unknown [217.111.208.18]) by kirsty.vergenet.net (Postfix) with ESMTPSA id 932AA25B814; Tue, 20 Dec 2016 21:21:26 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=verge.net.au; s=mail; t=1482229286; bh=RPEd/stzJIDCgNwCG1aECMZ3KbDM4ko1Z6uGGOQXKTw=; h=From:To:Cc:Subject:Date:From; b=fWbEKHK/HBztQSip8OsOB2uKgZ5kXLfO9fqVkH8lRzWfjyaxMKid2DWNs4oqZIt5Q qQ9z63hib6zMMOm7uk61hTcWkABnXOg1LC+knUfiQp6+OGXXI+5jBbOhDgPH2GPVQx aEkfXwKu/rmM8e2wLgx91XiYZjxoKf4h/yy6eims= Received: by penelope.kanocho.kobe.vergenet.net (Postfix, from userid 7100) id 7EBAB60474; Tue, 20 Dec 2016 11:21:22 +0100 (CET) From: Simon Horman To: Mark Brown Cc: Geert Uytterhoeven , Magnus Damm , linux-spi@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Simon Horman Subject: [PATCH spi/for-next] sip: sh-msiof: Do not use C++ style comment Date: Tue, 20 Dec 2016 11:21:16 +0100 Message-Id: <1482229276-21655-1-git-send-email-horms+renesas@verge.net.au> X-Mailer: git-send-email 2.7.0.rc3.207.g0ac5344 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 4286db8456f4 ("spi: sh-msiof: Add R-Car Gen 2 and 3 fallback bindings") added a C++ style comment. This is not in keeping with the style used for comments elsewhere in this fine. Update it accordingly. Signed-off-by: Simon Horman --- drivers/spi/spi-sh-msiof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index 471ca211b76c..1f00eeb0b5a3 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -982,7 +982,7 @@ static const struct of_device_id sh_msiof_match[] = { { .compatible = "renesas,rcar-gen2-msiof", .data = &r8a779x_data }, { .compatible = "renesas,msiof-r8a7796", .data = &r8a779x_data }, { .compatible = "renesas,rcar-gen3-msiof", .data = &r8a779x_data }, - { .compatible = "renesas,sh-msiof", .data = &sh_data }, // Deprecated + { .compatible = "renesas,sh-msiof", .data = &sh_data }, /* Deprecated */ {}, }; MODULE_DEVICE_TABLE(of, sh_msiof_match);