verdin-imx8mm: add nfsboot wrapper to env
[oweals/u-boot.git] / lib / rand.c
index 5c367e186f9d38b6bc82002cec1f81a6d4efa7c8..d256baf5cee7f4a525c8776576d634b7632bf168 100644 (file)
@@ -1,14 +1,14 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Simple xorshift PRNG
  *   see http://www.jstatsoft.org/v08/i14/paper
  *
  * Copyright (c) 2012 Michael Walle
  * Michael Walle <michael@walle.cc>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
+#include <rand.h>
 
 static unsigned int y = 1U;