From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752131AbeCNQvb (ORCPT ); Wed, 14 Mar 2018 12:51:31 -0400 Received: from sym2.noone.org ([178.63.92.236]:43726 "EHLO sym2.noone.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751871AbeCNQv1 (ORCPT ); Wed, 14 Mar 2018 12:51:27 -0400 From: Tobias Klauser To: Arnd Bergmann Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] scripts/checkstack.pl: remove blackfin support Date: Wed, 14 Mar 2018 17:51:25 +0100 Message-Id: <1521046285-9775-1-git-send-email-tklauser@distanz.ch> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <20180314143656.1495602-5-arnd@arndb.de> References: <20180314143656.1495602-5-arnd@arndb.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Blackfin port has been removed from the kernel, also remove the blackfin specific bits from the checkstack.pl script. Signed-off-by: Tobias Klauser --- Patch against the Arnd's asm-generic tree. scripts/checkstack.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl index eeb9ac8dbcfb..cbdf0dfd4c22 100755 --- a/scripts/checkstack.pl +++ b/scripts/checkstack.pl @@ -98,9 +98,6 @@ my (@stack, $re, $dre, $x, $xs, $funcre); # pair for larger users. -- PFM. #a00048e0: d4fc40f0 addi.l r15,-240,r15 $re = qr/.*addi\.l.*r15,-(([0-9]{2}|[3-9])[0-9]{2}),r15/o; - } elsif ($arch =~ /^blackfin$/) { - # 0: 00 e8 38 01 LINK 0x4e0; - $re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o; } elsif ($arch eq 'sparc' || $arch eq 'sparc64') { # f0019d10: 9d e3 bf 90 save %sp, -112, %sp $re = qr/.*save.*%sp, -(([0-9]{2}|[3-9])[0-9]{2}), %sp/o; -- 2.13.0