summaryrefslogtreecommitdiff
path: root/scripts/checkstack.pl
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2018-03-14 17:51:25 +0100
committerArnd Bergmann <arnd@arndb.de>2018-03-26 15:56:15 +0200
commite53a05a49e10c7cfc5ee8d381ff3574ce4a3faf5 (patch)
tree689870ecea3e70760ca81b0d5b2f7e76c331d593 /scripts/checkstack.pl
parent4aaacfc669941d4faed3c105f38368b463d0f59d (diff)
scripts/checkstack.pl: remove blackfin support
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 <tklauser@distanz.ch> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'scripts/checkstack.pl')
-rwxr-xr-xscripts/checkstack.pl3
1 files changed, 0 insertions, 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;