aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-03-09 16:03:47 +0100
committerArnd Bergmann <arnd@arndb.de>2018-03-26 15:56:12 +0200
commit82831598a621f1ec2e6136fdb11805c7917159ca (patch)
tree6667ee40cbe02e0d9674513a4517405c0b0736a0
parentDocumentation: arch-support: remove obsolete architectures (diff)
downloadlinux-dev-82831598a621f1ec2e6136fdb11805c7917159ca.tar.xz
linux-dev-82831598a621f1ec2e6136fdb11805c7917159ca.zip
recordmcount.pl: drop blackin and tile support
These two architectures are getting removed, so we no longer need the special cases. Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rwxr-xr-xscripts/recordmcount.pl8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 2033af758173..c74ecc6504e8 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -368,14 +368,6 @@ if ($arch eq "x86_64") {
} elsif ($arch eq "microblaze") {
# Microblaze calls '_mcount' instead of plain 'mcount'.
$mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
-} elsif ($arch eq "blackfin") {
- $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
- $mcount_adjust = -4;
-} elsif ($arch eq "tilegx" || $arch eq "tile") {
- # Default to the newer TILE-Gx architecture if only "tile" is given.
- $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
- $type = ".quad";
- $alignment = 8;
} else {
die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
}