diff options
author | Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> | 2015-02-12 18:00:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:12 -0500 |
commit | d170cf4674768db22b66a1be4be7877d3b2c3874 (patch) | |
tree | 787a5221bb7ebb59cfbc3089434333c010343750 /arch/frv | |
parent | 0f050d997e275cf0e47ddc7006284eaa3c6fe049 (diff) |
arch/frv/mm/extable.c: remove unused function
Remove the function search_one_table() that is not used anywhere.
This was partially found by using a static code analysis program called
cppcheck.
Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/mm/extable.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/frv/mm/extable.c b/arch/frv/mm/extable.c index 2fb9b3ab57b9..8863d6c1df6e 100644 --- a/arch/frv/mm/extable.c +++ b/arch/frv/mm/extable.c | |||
@@ -10,29 +10,6 @@ extern const void __memset_end, __memset_user_error_lr, __memset_user_error_hand | |||
10 | extern const void __memcpy_end, __memcpy_user_error_lr, __memcpy_user_error_handler; | 10 | extern const void __memcpy_end, __memcpy_user_error_lr, __memcpy_user_error_handler; |
11 | extern spinlock_t modlist_lock; | 11 | extern spinlock_t modlist_lock; |
12 | 12 | ||
13 | /*****************************************************************************/ | ||
14 | /* | ||
15 | * | ||
16 | */ | ||
17 | static inline unsigned long search_one_table(const struct exception_table_entry *first, | ||
18 | const struct exception_table_entry *last, | ||
19 | unsigned long value) | ||
20 | { | ||
21 | while (first <= last) { | ||
22 | const struct exception_table_entry __attribute__((aligned(8))) *mid; | ||
23 | long diff; | ||
24 | |||
25 | mid = (last - first) / 2 + first; | ||
26 | diff = mid->insn - value; | ||
27 | if (diff == 0) | ||
28 | return mid->fixup; | ||
29 | else if (diff < 0) | ||
30 | first = mid + 1; | ||
31 | else | ||
32 | last = mid - 1; | ||
33 | } | ||
34 | return 0; | ||
35 | } /* end search_one_table() */ | ||
36 | 13 | ||
37 | /*****************************************************************************/ | 14 | /*****************************************************************************/ |
38 | /* | 15 | /* |