Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758254AbcLOOzu (ORCPT ); Thu, 15 Dec 2016 09:55:50 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:33641 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755599AbcLOOzr (ORCPT ); Thu, 15 Dec 2016 09:55:47 -0500 From: Corentin Labbe To: arnd@arndb.de, gregkh@linuxfoundation.org Cc: linux-kernel@vger.kernel.org, Corentin Labbe Subject: [PATCH] ds1302: remove unneeded linux/miscdevice.h include Date: Thu, 15 Dec 2016 15:53:23 +0100 Message-Id: <20161215145323.23921-1-clabbe.montjoie@gmail.com> X-Mailer: git-send-email 2.10.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 619 Lines: 23 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 --- drivers/char/ds1302.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/char/ds1302.c b/drivers/char/ds1302.c index 7d34b20..c614a56 100644 --- a/drivers/char/ds1302.c +++ b/drivers/char/ds1302.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include -- 2.10.2