From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932496AbbIDI2Q (ORCPT ); Fri, 4 Sep 2015 04:28:16 -0400 Received: from mail.sevenbyte.org ([5.9.90.188]:40835 "EHLO mail.sevenbyte.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753575AbbIDI2N (ORCPT ); Fri, 4 Sep 2015 04:28:13 -0400 X-Greylist: delayed 1058 seconds by postgrey-1.27 at vger.kernel.org; Fri, 04 Sep 2015 04:28:12 EDT Message-ID: <1441354233.24275.3.camel@sevenbyte.org> Subject: Re: [PATCH] checkpatch: Fix perl 5.22 brace deprecation warnings From: Stefan Tatschner To: linux-kernel@vger.kernel.org Cc: Andy Whitcroft , Joe Perches Date: Fri, 04 Sep 2015 10:10:33 +0200 In-Reply-To: <1436383335-2674-1-git-send-email-stefan@sevenbyte.org> References: <1436383335-2674-1-git-send-email-stefan@sevenbyte.org> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mi, 2015-07-08 at 21:22 +0200, Stefan Tatschner wrote: > This patch fixes four "Unescaped left brace in regex is > deprecated" (perl 5.22) warnings by escaping left braces > properly. > > Signed-off-by: Stefan Tatschner Are there any updates on this patch? It seems it got lost in the noise. It fixes these deprecation warnings on perl 5.22.0: Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\#\s*define.*do\s{ <-- HERE / at scripts/checkpatch.pl line 3523. Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\(.*\){ <-- HERE / at scripts/checkpatch.pl line 4035. Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/do{ <-- HERE / at scripts/checkpatch.pl line 4036. Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/^\({ <-- HERE / at scripts/checkpatch.pl line 4483. Stefan