From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH 2/4] Sparc: sparc_cpu_model isn't in asm/system.h any more Date: Wed, 19 Feb 2014 19:47:13 -0500 (EST) Message-ID: <20140219.194713.1411547109743205257.davem@davemloft.net> References: <20140212154544.2405.2992.stgit@warthog.procyon.org.uk> <20140212154559.2405.3104.stgit@warthog.procyon.org.uk> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from shards.monkeyblade.net ([149.20.54.216]:49106 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750846AbaBTArP (ORCPT ); Wed, 19 Feb 2014 19:47:15 -0500 In-Reply-To: <20140212154559.2405.3104.stgit@warthog.procyon.org.uk> Sender: linux-arch-owner@vger.kernel.org List-ID: To: dhowells@redhat.com Cc: akpm@linux-foundation.org, linux-arch@vger.kernel.org, arnd@arndb.de, linux-kernel@vger.kernel.org, sparclinux@vger.kernel.org From: David Howells Date: Wed, 12 Feb 2014 15:45:59 +0000 > sparc_cpu_model isn't in asm/system.h any more, so remove a comment about it. > > Signed-off-by: David Howells That's not all your patch does: > - /* extern enum sparc_cpu sparc_cpu_model; */ /* in */ > - if (sparc_cpu_model != sun4m) { > + if (sparc_cpu_model != sun4m) > /* We must be on sun4m because we use MMU Bypass ASI. */ > return -ENXIO; > - } The basic block is more than one line, therefore the braces are appropriate. Please do not remove them, and especially do not remove them without mentioning them in the commit message. Thanks.