The patch titled Subject: arch/frv/mm/extable.c: remove unused function has been added to the -mm tree. Its filename is arch-frv-mm-extablec-remove-unused-function.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/arch-frv-mm-extablec-remove-unused-function.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/arch-frv-mm-extablec-remove-unused-function.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx> Subject: 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@xxxxxxxxxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/frv/mm/extable.c | 23 ----------------------- 1 file changed, 23 deletions(-) diff -puN arch/frv/mm/extable.c~arch-frv-mm-extablec-remove-unused-function arch/frv/mm/extable.c --- a/arch/frv/mm/extable.c~arch-frv-mm-extablec-remove-unused-function +++ a/arch/frv/mm/extable.c @@ -10,29 +10,6 @@ extern const void __memset_end, __memset extern const void __memcpy_end, __memcpy_user_error_lr, __memcpy_user_error_handler; extern spinlock_t modlist_lock; -/*****************************************************************************/ -/* - * - */ -static inline unsigned long search_one_table(const struct exception_table_entry *first, - const struct exception_table_entry *last, - unsigned long value) -{ - while (first <= last) { - const struct exception_table_entry __attribute__((aligned(8))) *mid; - long diff; - - mid = (last - first) / 2 + first; - diff = mid->insn - value; - if (diff == 0) - return mid->fixup; - else if (diff < 0) - first = mid + 1; - else - last = mid - 1; - } - return 0; -} /* end search_one_table() */ /*****************************************************************************/ /* _ Patches currently in -mm which might be from rickard_strandqvist@xxxxxxxxxxxxxxxxxx are origin.patch arch-frv-mm-extablec-remove-unused-function.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html