diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-03-09 16:03:47 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2018-03-26 15:56:12 +0200 |
commit | 82831598a621f1ec2e6136fdb11805c7917159ca (patch) | |
tree | 6667ee40cbe02e0d9674513a4517405c0b0736a0 /scripts | |
parent | 1ea5afd42a16058f9301a46c8969787c7baa7eea (diff) | |
download | linux-82831598a621f1ec2e6136fdb11805c7917159ca.tar.bz2 |
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/recordmcount.pl | 8 |
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"; } |