From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754022AbdK3Ru1 (ORCPT ); Thu, 30 Nov 2017 12:50:27 -0500 Received: from mail-it0-f49.google.com ([209.85.214.49]:34133 "EHLO mail-it0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753846AbdK3RuZ (ORCPT ); Thu, 30 Nov 2017 12:50:25 -0500 X-Google-Smtp-Source: AGs4zMa79BudMFK4vv2JJGAFUGMhWX2TOgxGmY+Fu4Tm9gA9OUF0j7taRHWG0LmT6bXNyEP4KQGeQQ== Date: Thu, 30 Nov 2017 09:50:21 -0800 From: Sami Tolvanen To: Nick Desaulniers Cc: Alex Matveev , Andi Kleen , Ard Biesheuvel , Greg Hackmann , Kees Cook , linux-arm-kernel@lists.infradead.org, Linux Kbuild mailing list , LKML , Mark Rutland , Masahiro Yamada , Maxim Kuvyrkov , Michal Marek , Yury Norov , Matthias Kaehlcke , Nicholas Piggin Subject: Re: [PATCH 6/7] arm64: explicitly pass --no-fix-cortex-a53-843419 to GNU gold Message-ID: <20171130175021.GD90451@samitolvanen.mtv.corp.google.com> References: <20171129234442.655-1-samitolvanen@google.com> <20171129234442.655-7-samitolvanen@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 29, 2017 at 04:30:33PM -0800, Nick Desaulniers wrote: > Rather than: > > if CONFIG_ARM64_ERRATUM_843419 == y: > ... > if CONFIG_ARM64_ERRATUM_843419 == '': > ... > > could this be: > > if CONFIG_ARM64_ERRATUM_843419 == y: > ... > else > ... > > ? Sure. I'll clean this up in v2. Sami