Browse Source

m68k: Export mach_random_get_entropy to modules

When a module calls random_get_entropy():

    ERROR: "mach_random_get_entropy" [crypto/drbg.ko] undefined!
    make[1]: *** [__modpost] Error 1

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Geert Uytterhoeven 11 years ago
parent
commit
5bc8c7cdeb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      arch/m68k/kernel/time.c

+ 2 - 0
arch/m68k/kernel/time.c

@@ -11,6 +11,7 @@
  */
  */
 
 
 #include <linux/errno.h>
 #include <linux/errno.h>
+#include <linux/export.h>
 #include <linux/module.h>
 #include <linux/module.h>
 #include <linux/sched.h>
 #include <linux/sched.h>
 #include <linux/kernel.h>
 #include <linux/kernel.h>
@@ -30,6 +31,7 @@
 
 
 
 
 unsigned long (*mach_random_get_entropy)(void);
 unsigned long (*mach_random_get_entropy)(void);
+EXPORT_SYMBOL_GPL(mach_random_get_entropy);
 
 
 
 
 /*
 /*