mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-08 23:55:14 +00:00
hwrng: core - Use struct completion for cleanup_done
There is no point in doing a manual completion for cleanup_done when struct completion fits in perfectly. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
d69e75deff
commit
77584ee574
2 changed files with 5 additions and 10 deletions
|
@ -12,6 +12,7 @@
|
|||
#ifndef LINUX_HWRANDOM_H_
|
||||
#define LINUX_HWRANDOM_H_
|
||||
|
||||
#include <linux/completion.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/kref.h>
|
||||
|
@ -46,7 +47,7 @@ struct hwrng {
|
|||
/* internal. */
|
||||
struct list_head list;
|
||||
struct kref ref;
|
||||
bool cleanup_done;
|
||||
struct completion cleanup_done;
|
||||
};
|
||||
|
||||
/** Register a new Hardware Random Number Generator driver. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue