From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michal Nazarewicz Subject: Re: [PATCH v5 3/6] linux/bug.h: correct "(foo*)" should be "(foo *)" Date: Thu, 25 May 2017 15:59:26 +0200 Message-ID: References: <20170525120316.24473-1-abbotti@mev.co.uk> <20170525120316.24473-4-abbotti@mev.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mail-wm0-f42.google.com ([74.125.82.42]:34830 "EHLO mail-wm0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S969622AbdEYN73 (ORCPT ); Thu, 25 May 2017 09:59:29 -0400 Received: by mail-wm0-f42.google.com with SMTP id b84so93613742wmh.0 for ; Thu, 25 May 2017 06:59:28 -0700 (PDT) In-Reply-To: <20170525120316.24473-4-abbotti@mev.co.uk> Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Cc: Alexander Potapenko , Andrew Morton , Arnd Bergmann , Borislav Petkov , Hidehiro Kawai , Ian Abbott , Jakub Kicinski , Johannes Berg , Kees Cook , Peter Zijlstra , Rasmus Villemoes , Steven Rostedt On Thu, May 25 2017, Ian Abbott wrote: > Correct this checkpatch.pl error: > > |ERROR: "(foo*)" should be "(foo *)" > |#19: FILE: include/linux/bug.h:19: > |+#define BUILD_BUG_ON_NULL(e) ((void*)0) > > Signed-off-by: Ian Abbott > Cc: Andrew Morton > Cc: Kees Cook > Cc: Steven Rostedt > Cc: Peter Zijlstra > Cc: Jakub Kicinski > Cc: Rasmus Villemoes Acked-by: Michal Nazarewicz > --- > v5: Actually, there was no v1 thru v4. I called this v5 to match the > series. > --- > include/linux/bug.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/bug.h b/include/linux/bug.h > index ca24007e2dc3..216a1b79653d 100644 > --- a/include/linux/bug.h > +++ b/include/linux/bug.h > @@ -16,7 +16,7 @@ struct pt_regs; > #define __BUILD_BUG_ON_NOT_POWER_OF_2(n) (0) > #define BUILD_BUG_ON_NOT_POWER_OF_2(n) (0) > #define BUILD_BUG_ON_ZERO(e) (0) > -#define BUILD_BUG_ON_NULL(e) ((void*)0) > +#define BUILD_BUG_ON_NULL(e) ((void *)0) > #define BUILD_BUG_ON_INVALID(e) (0) > #define BUILD_BUG_ON_MSG(cond, msg) (0) > #define BUILD_BUG_ON(condition) (0) --=20 Best regards =E3=83=9F=E3=83=8F=E3=82=A6 =E2=80=9C=F0=9D=93=B6=F0=9D=93=B2=F0=9D=93=B7= =F0=9D=93=AA86=E2=80=9D =E3=83=8A=E3=82=B6=E3=83=AC=E3=83=B4=E3=82=A4=E3=83= =84 =C2=ABIf at first you don=E2=80=99t succeed, give up skydiving=C2=BB From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com ([74.125.82.42]:34830 "EHLO mail-wm0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S969622AbdEYN73 (ORCPT ); Thu, 25 May 2017 09:59:29 -0400 Received: by mail-wm0-f42.google.com with SMTP id b84so93613742wmh.0 for ; Thu, 25 May 2017 06:59:28 -0700 (PDT) From: Michal Nazarewicz Subject: Re: [PATCH v5 3/6] linux/bug.h: correct "(foo*)" should be "(foo *)" In-Reply-To: <20170525120316.24473-4-abbotti@mev.co.uk> References: <20170525120316.24473-1-abbotti@mev.co.uk> <20170525120316.24473-4-abbotti@mev.co.uk> Date: Thu, 25 May 2017 15:59:26 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Sender: linux-arch-owner@vger.kernel.org List-ID: To: Ian Abbott , linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Cc: Alexander Potapenko , Andrew Morton , Arnd Bergmann , Borislav Petkov , Hidehiro Kawai , Jakub Kicinski , Johannes Berg , Kees Cook , Peter Zijlstra , Rasmus Villemoes , Steven Rostedt Message-ID: <20170525135926.Qbah6FuJdCSJH3Yr-Ivdz0C9aqkJpYFMiJ7CdJ28K4c@z> On Thu, May 25 2017, Ian Abbott wrote: > Correct this checkpatch.pl error: > > |ERROR: "(foo*)" should be "(foo *)" > |#19: FILE: include/linux/bug.h:19: > |+#define BUILD_BUG_ON_NULL(e) ((void*)0) > > Signed-off-by: Ian Abbott > Cc: Andrew Morton > Cc: Kees Cook > Cc: Steven Rostedt > Cc: Peter Zijlstra > Cc: Jakub Kicinski > Cc: Rasmus Villemoes Acked-by: Michal Nazarewicz > --- > v5: Actually, there was no v1 thru v4. I called this v5 to match the > series. > --- > include/linux/bug.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/bug.h b/include/linux/bug.h > index ca24007e2dc3..216a1b79653d 100644 > --- a/include/linux/bug.h > +++ b/include/linux/bug.h > @@ -16,7 +16,7 @@ struct pt_regs; > #define __BUILD_BUG_ON_NOT_POWER_OF_2(n) (0) > #define BUILD_BUG_ON_NOT_POWER_OF_2(n) (0) > #define BUILD_BUG_ON_ZERO(e) (0) > -#define BUILD_BUG_ON_NULL(e) ((void*)0) > +#define BUILD_BUG_ON_NULL(e) ((void *)0) > #define BUILD_BUG_ON_INVALID(e) (0) > #define BUILD_BUG_ON_MSG(cond, msg) (0) > #define BUILD_BUG_ON(condition) (0) --=20 Best regards =E3=83=9F=E3=83=8F=E3=82=A6 =E2=80=9C=F0=9D=93=B6=F0=9D=93=B2=F0=9D=93=B7= =F0=9D=93=AA86=E2=80=9D =E3=83=8A=E3=82=B6=E3=83=AC=E3=83=B4=E3=82=A4=E3=83= =84 =C2=ABIf at first you don=E2=80=99t succeed, give up skydiving=C2=BB