rtnetlink: check DO_SETLINK_NOTIFY correctly in do_setlink
[linux/fpc-iii.git] / arch / powerpc / platforms / pseries / rng.c
blob31ca557af60bc82cdc2c089725d0bd382e763d68
1 /*
2 * Copyright 2013, Michael Ellerman, IBM Corporation.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
10 #define pr_fmt(fmt) "pseries-rng: " fmt
12 #include <linux/kernel.h>
13 #include <linux/of.h>
14 #include <asm/archrandom.h>
15 #include <asm/machdep.h>
16 #include <asm/plpar_wrappers.h>
19 static int pseries_get_random_long(unsigned long *v)
21 unsigned long retbuf[PLPAR_HCALL_BUFSIZE];
23 if (plpar_hcall(H_RANDOM, retbuf) == H_SUCCESS) {
24 *v = retbuf[0];
25 return 1;
28 return 0;
31 static __init int rng_init(void)
33 struct device_node *dn;
35 dn = of_find_compatible_node(NULL, NULL, "ibm,random");
36 if (!dn)
37 return -ENODEV;
39 pr_info("Registering arch random hook.\n");
41 ppc_md.get_random_seed = pseries_get_random_long;
43 return 0;
45 machine_subsys_initcall(pseries, rng_init);