aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2017-02-15 11:35:27 -0500
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2017-02-21 15:23:13 -0500
commit0500ce589aa7b5325af161d3c992ffb6be138ff9 (patch)
treeaf23b5a2bd7d9a3b43e98976671a8d23487e4a3e /include/linux/platform_data
parent8ccbd360068af1993a9359f1d31db70cf5eb8825 (diff)
rtc: m48t86: remove unused platform_data
All users of this driver have been updated to allow the driver to manage it's own resources and do the read/write operations internally. The m48t86_ops are no longer used. Remove the platform_data header and the support code in the driver. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/rtc-m48t86.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/linux/platform_data/rtc-m48t86.h b/include/linux/platform_data/rtc-m48t86.h
deleted file mode 100644
index 915d6b4f0f89..000000000000
--- a/include/linux/platform_data/rtc-m48t86.h
+++ /dev/null
@@ -1,16 +0,0 @@
1/*
2 * ST M48T86 / Dallas DS12887 RTC driver
3 * Copyright (c) 2006 Tower Technologies
4 *
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10*/
11
12struct m48t86_ops
13{
14 void (*writebyte)(unsigned char value, unsigned long addr);
15 unsigned char (*readbyte)(unsigned long addr);
16};