--- zzzz-none-000/linux-3.10.107/arch/m68k/include/asm/timex.h 2017-06-27 09:49:32.000000000 +0000 +++ scorpion-7490-727/linux-3.10.107/arch/m68k/include/asm/timex.h 2021-02-04 17:41:59.000000000 +0000 @@ -28,4 +28,14 @@ return 0; } +extern unsigned long (*mach_random_get_entropy)(void); + +static inline unsigned long random_get_entropy(void) +{ + if (mach_random_get_entropy) + return mach_random_get_entropy(); + return 0; +} +#define random_get_entropy random_get_entropy + #endif