Skip to content

Commit

Permalink
hwrng: core - do not use multiple blank lines
Browse files Browse the repository at this point in the history
This patch fix the checkpatch warning "Please don't use multiple blank lines"

Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Corentin LABBE authored and Herbert Xu committed Dec 27, 2016
1 parent 50fb570 commit 6bc17d9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/char/hw_random/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
*/


#include <linux/device.h>
#include <linux/hw_random.h>
#include <linux/module.h>
Expand All @@ -45,12 +44,10 @@
#include <linux/err.h>
#include <linux/uaccess.h>


#define RNG_MODULE_NAME "hw_random"
#define PFX RNG_MODULE_NAME ": "
#define RNG_MISCDEV_MINOR 183 /* official */


static struct hwrng *current_rng;
static struct task_struct *hwrng_fill;
static LIST_HEAD(rng_list);
Expand Down Expand Up @@ -298,7 +295,6 @@ static ssize_t rng_dev_read(struct file *filp, char __user *buf,
goto out;
}


static const struct file_operations rng_chrdev_ops = {
.owner = THIS_MODULE,
.open = rng_dev_open,
Expand All @@ -316,7 +312,6 @@ static struct miscdevice rng_miscdev = {
.groups = rng_dev_groups,
};


static ssize_t hwrng_attr_current_store(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t len)
Expand Down

0 comments on commit 6bc17d9

Please sign in to comment.