remove libdss from Makefile
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / lib / bsearch.c
index 18b445b010c35a87be7480192d5aefa62583ac03..82512fe7b33c02dc6a2b3ae9c7887c0014ad734e 100644 (file)
@@ -11,6 +11,7 @@
 
 #include <linux/export.h>
 #include <linux/bsearch.h>
+#include <linux/kprobes.h>
 
 /*
  * bsearch - binary search an array of elements
@@ -53,3 +54,4 @@ void *bsearch(const void *key, const void *base, size_t num, size_t size,
        return NULL;
 }
 EXPORT_SYMBOL(bsearch);
+NOKPROBE_SYMBOL(bsearch);