diff options
author | Corentin Labbe <clabbe.montjoie@gmail.com> | 2016-12-15 15:53:23 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-10 21:46:41 +0100 |
commit | 8681d5b04f812d9cc5cde72bbbb5081f8f1c9728 (patch) | |
tree | e40b46c42c43ea114b456a750d9713577ee21019 /drivers/char/ds1302.c | |
parent | f17c941cbcdccc4fef49a10622ce2ffd2321a143 (diff) |
ds1302: remove unneeded linux/miscdevice.h include
drivers/char/ds1302.c does not use any miscdevice so the
inclusion of linux/miscdevice.h is unnecessary.
This patch remove this inclusion.
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/ds1302.c')
-rw-r--r-- | drivers/char/ds1302.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/char/ds1302.c b/drivers/char/ds1302.c index 7d34b203718a..c614a56e68cc 100644 --- a/drivers/char/ds1302.c +++ b/drivers/char/ds1302.c @@ -17,7 +17,6 @@ #include <linux/init.h> #include <linux/mm.h> #include <linux/module.h> -#include <linux/miscdevice.h> #include <linux/delay.h> #include <linux/bcd.h> #include <linux/mutex.h> |