[PATCH] efirtc: remove unneeded forward function declaration

From: Geliang Tang
Date: Mon Nov 02 2015 - 10:17:19 EST


Remove unneeded forward function declaration efi_rtc_ioctl.

Signed-off-by: Geliang Tang <geliangtang@xxxxxxx>
---
drivers/char/efirtc.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/drivers/char/efirtc.c b/drivers/char/efirtc.c
index 80058bd..b1905b2 100644
--- a/drivers/char/efirtc.c
+++ b/drivers/char/efirtc.c
@@ -48,9 +48,6 @@

static DEFINE_SPINLOCK(efi_rtc_lock);

-static long efi_rtc_ioctl(struct file *file, unsigned int cmd,
- unsigned long arg);
-
#define is_leap(year) \
((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))

--
2.4.3


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/