cmd640: fix kernel oops in test_irq() method
[sfrench/cifs-2.6.git] / arch / blackfin / lib / strncmp.c
index d791f120bff7388252f3add58d20aade76cc03b2..46518b1d29831bae0184daa34b2b45889563448f 100644 (file)
@@ -1,10 +1,18 @@
-#include <linux/types.h>
+/*
+ * Provide symbol in case str func is not inlined.
+ *
+ * Copyright (c) 2006-2007 Analog Devices Inc.
+ *
+ * Licensed under the GPL-2 or later.
+ */
 
 #define strncmp __inline_strncmp
 #include <asm/string.h>
+#include <linux/module.h>
 #undef strncmp
 
 int strncmp(const char *cs, const char *ct, size_t count)
 {
        return __inline_strncmp(cs, ct, count);
 }
+EXPORT_SYMBOL(strncmp);