diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-07-16 14:05:36 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2021-01-03 20:05:18 -0500 |
commit | b4edf06c8aaae30ef926bd6853df6e59a7579ee9 (patch) | |
tree | 734b80c130634179fe3f3cfaf413cddc7d016817 /lib/extable.c | |
parent | c4da8e0dc6f7cec80f32af080cadf47c1753a2ab (diff) | |
download | linux-b4edf06c8aaae30ef926bd6853df6e59a7579ee9.tar.gz linux-b4edf06c8aaae30ef926bd6853df6e59a7579ee9.tar.bz2 linux-b4edf06c8aaae30ef926bd6853df6e59a7579ee9.zip |
sparc32: switch to generic extables
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'lib/extable.c')
-rw-r--r-- | lib/extable.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/extable.c b/lib/extable.c index c3e59caf7ffa..9c9f40bd2b3d 100644 --- a/lib/extable.c +++ b/lib/extable.c @@ -21,7 +21,6 @@ static inline unsigned long ex_to_insn(const struct exception_table_entry *x) } #endif -#ifndef ARCH_HAS_SORT_EXTABLE #ifndef ARCH_HAS_RELATIVE_EXTABLE #define swap_ex NULL #else @@ -88,9 +87,6 @@ void trim_init_extable(struct module *m) m->num_exentries--; } #endif /* CONFIG_MODULES */ -#endif /* !ARCH_HAS_SORT_EXTABLE */ - -#ifndef ARCH_HAS_SEARCH_EXTABLE static int cmp_ex_search(const void *key, const void *elt) { @@ -120,4 +116,3 @@ search_extable(const struct exception_table_entry *base, return bsearch(&value, base, num, sizeof(struct exception_table_entry), cmp_ex_search); } -#endif |