Received: by 2002:a05:6a10:af89:0:0:0:0 with SMTP id iu9csp3371744pxb; Mon, 17 Jan 2022 18:54:18 -0800 (PST) X-Google-Smtp-Source: ABdhPJzE1lN+Dw/gEy7X0k40p2MxIMLahcRQQQNOEb5wgabSu6P4gOFi7/6nnve6UKlyRGiGEjdC X-Received: by 2002:a63:2b87:: with SMTP id r129mr21955854pgr.232.1642474458065; Mon, 17 Jan 2022 18:54:18 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1642474458; cv=none; d=google.com; s=arc-20160816; b=uicRd5nV3xp6FZwmUhlc77CPIeVMO0oT7TsdX3quCkfhSdfWJyMyejpS+MLmVvf7Wn orcx5dulxMiCZ+r0UW4SV8Huznp2jSuCGq55nJmi3LUv7B2UyhBEFJywY3iXZjD5IA/y EAxKGh31MGEzAkRXgXziuoAHvwx/N8IgeB7faP1v3znfbTO4GfzS5jSQO1vSY+dB4uZY XdEYqGUSB4mBeU6T3DRqgJdycOKI25BBZy/jXK9HtPYMcX/7WpYZSMqB6r1yKi3t6zAP UhJpvw98EaNDypFRW9JmU9wRIv2HmA0GTSt5LyGXNevlwgyVJvufkfKM5rERueSCIPPf RYsA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=el/wGiTYKUmWAtm22Reu7GOorqYPWvaWPq2pT5OPVMk=; b=zi19hS7s6L0A5APAPJ6ieSkDFRGalp6y1jJpXjM+YkPtyeFemapoA/2zrGRX9QiTiy 2I6ki3j9Iu7zuyHA7BLhhgk/Shuclq1FV/bBk4qaY1nl4eYkji/eUxe5vo9WFUKJjWdX 91ZsEON02QKPIKisymHo/oaEiR25mG/R3TMRGW/B6GJaBFwRNN3ld/5ykQlstlgyB38O LthvwW7O15THlYQ6/lkE54C4ZlCFC1zN4EthPg/f1EWVVeFPkBW7+fNBniZDDcg60LmE vcZfWSKj6nqd6/PCzenUS89ooxYJf/KsOVkmxCTX9hKfTpUUJ6JuqQWOMzI0q/q5f5+K ISNA== 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 y7si14818812plr.100.2022.01.17.18.54.05; Mon, 17 Jan 2022 18:54:18 -0800 (PST) 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 S241509AbiAQRfD (ORCPT + 99 others); Mon, 17 Jan 2022 12:35:03 -0500 Received: from isilmar-4.linta.de ([136.243.71.142]:47086 "EHLO isilmar-4.linta.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239393AbiAQRfA (ORCPT ); Mon, 17 Jan 2022 12:35:00 -0500 X-isilmar-external: YES X-isilmar-external: YES Received: from owl.dominikbrodowski.net (owl.brodo.linta [10.2.0.111]) by isilmar-4.linta.de (Postfix) with ESMTPSA id DC1E1200278; Mon, 17 Jan 2022 17:34:58 +0000 (UTC) Received: by owl.dominikbrodowski.net (Postfix, from userid 1000) id 3FE91807EA; Mon, 17 Jan 2022 18:34:30 +0100 (CET) Date: Mon, 17 Jan 2022 18:34:30 +0100 From: Dominik Brodowski To: "Jason A. Donenfeld" Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH 4/4] random: selectively clang-format where it makes sense Message-ID: References: <20220113154413.29513-1-Jason@zx2c4.com> <20220116163547.154991-1-Jason@zx2c4.com> <20220116163547.154991-4-Jason@zx2c4.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220116163547.154991-4-Jason@zx2c4.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Sun, Jan 16, 2022 at 05:35:47PM +0100 schrieb Jason A. Donenfeld: > This is an old driver that has seen a lot of different eras of kernel > coding style. In an effort to make it easier to code for, unify the > coding style around the current norm, by accepting some of -- but > certainly not all of -- the suggestions from clang-format. This should > remove ambiguity in coding style, especially with regards to spacing, > when code is being changed or amended. Consequently it also makes code > review easier on the eyes, following one uniform style rather than > several. > > Signed-off-by: Jason A. Donenfeld Reviewed-by: Dominik Brodowski Thanks, Dominik