From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A830EC433E3 for ; Mon, 27 Jul 2020 20:32:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 73DE720759 for ; Mon, 27 Jul 2020 20:32:59 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=lechnology.com header.i=@lechnology.com header.b="QBVHnZTK" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729262AbgG0Uc6 (ORCPT ); Mon, 27 Jul 2020 16:32:58 -0400 Received: from vern.gendns.com ([98.142.107.122]:50622 "EHLO vern.gendns.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726196AbgG0Uc5 (ORCPT ); Mon, 27 Jul 2020 16:32:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lechnology.com; s=default; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To:Subject:Sender :Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=2Qbdrl9zDyYUDiuprAY1yYquh3ltubEZYSXcWV7O1Lc=; b=QBVHnZTKCHFlJW8ennnb2tB/bb m0yH45Z+uSv96AyPFVGsbZFJZnRrd44+wNtbHN6q/hV30+42IEsFoTO0092Q6OOqIkfuVg2Mvtjf+ Ye3+H1liJuQwL3Bci2oHiex06QodIsf46Pac9uQzpJvv9I3JCM0lPy9X0gAt0sb1l1c05kvnpMUD8 wKa5FCc433oxck/+7RMkwYSsxBDsxbYtWzCi9mGBnEwwSA2pFt8P6/pqB10q90WNJESegHcuyLsz3 2D0tdqwUl1mWXWXl5UTSoNroloQINmpSecYfOPep7laYF18QaIuwYHkNXLlzTfUSbIIS9MRJO3461 W109mHhw==; Received: from [2600:1700:4830:165f::19e] (port=59352) by vern.gendns.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1k09nr-0004In-Rw; Mon, 27 Jul 2020 16:32:55 -0400 Subject: Re: [PATCH][next] clk: davinci: Use fallthrough pseudo-keyword To: "Gustavo A. R. Silva" , Sekhar Nori , Michael Turquette , Stephen Boyd Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org References: <20200727201122.GA2593@embeddedor> From: David Lechner Message-ID: <4cc1d793-4722-42c2-9712-2ebccbd6abeb@lechnology.com> Date: Mon, 27 Jul 2020 15:32:53 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200727201122.GA2593@embeddedor> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vern.gendns.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lechnology.com X-Get-Message-Sender-Via: vern.gendns.com: authenticated_id: davidmain+lechnology.com/only user confirmed/virtual account not confirmed X-Authenticated-Sender: vern.gendns.com: davidmain@lechnology.com X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 7/27/20 3:11 PM, Gustavo A. R. Silva wrote: > Replace the existing /* fall through */ comments and its variants with > the new pseudo-keyword macro fallthrough[1]. > > [1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through > > Signed-off-by: Gustavo A. R. Silva Reviewed-by: David Lechner