rng-egd.c (a3206972a9eab65ec8e8f9ae320ad628ba4b58f1) | rng-egd.c (9c058332f36bc84db57f3d54566228799c5e9605) |
---|---|
1/* 2 * QEMU Random Number Generator Backend 3 * 4 * Copyright IBM, Corp. 2012 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 | 1/* 2 * QEMU Random Number Generator Backend 3 * 4 * Copyright IBM, Corp. 2012 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 |
13#include "qemu/osdep.h" |
|
13#include "sysemu/rng.h" 14#include "sysemu/char.h" 15#include "qapi/qmp/qerror.h" 16#include "hw/qdev.h" /* just for DEFINE_PROP_CHR */ 17 18#define TYPE_RNG_EGD "rng-egd" 19#define RNG_EGD(obj) OBJECT_CHECK(RngEgd, (obj), TYPE_RNG_EGD) 20 --- 213 unchanged lines hidden --- | 14#include "sysemu/rng.h" 15#include "sysemu/char.h" 16#include "qapi/qmp/qerror.h" 17#include "hw/qdev.h" /* just for DEFINE_PROP_CHR */ 18 19#define TYPE_RNG_EGD "rng-egd" 20#define RNG_EGD(obj) OBJECT_CHECK(RngEgd, (obj), TYPE_RNG_EGD) 21 --- 213 unchanged lines hidden --- |