From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965307AbdADKjm (ORCPT ); Wed, 4 Jan 2017 05:39:42 -0500 Received: from mail-lf0-f54.google.com ([209.85.215.54]:33753 "EHLO mail-lf0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757676AbdADKjY (ORCPT ); Wed, 4 Jan 2017 05:39:24 -0500 Date: Wed, 4 Jan 2017 11:39:11 +0100 From: Christoffer Dall To: Arnd Bergmann Cc: linux-arch@vger.kernel.org, kernel-build-reports@lists.linaro.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Russell King , Andrew Morton , kvmarm@lists.cs.columbia.edu, linux-arm-kernel@vger.kernel.org Subject: Re: [PATCH 12/13] KVM: arm: avoid binary number literals for gcc-4.2 Message-ID: <20170104103911.GC20461@cbox> References: <20161216105634.235457-1-arnd@arndb.de> <20161216105634.235457-13-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161216105634.235457-13-arnd@arndb.de> 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 Fri, Dec 16, 2016 at 11:56:33AM +0100, Arnd Bergmann wrote: > Old gcc versions prior to 4.3 don't understand the 0b... syntax for > numbers, and this seems to be the only instance in the kernel, so better > use hexadecimal instead. > > arch/arm/include/asm/kvm_mmu.h:127:38: error: invalid suffix "b101" on integer constant > > Fixes: 159793001d7d ("ARM: KVM: force cache clean on page fault when caches are off") > Signed-off-by: Arnd Bergmann Same as before: Acked-by: Christoffer Dall