diff options
author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2017-02-15 19:35:27 +0300 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-02-21 23:23:13 +0300 |
commit | 0500ce589aa7b5325af161d3c992ffb6be138ff9 (patch) | |
tree | af23b5a2bd7d9a3b43e98976671a8d23487e4a3e /include/linux/platform_data | |
parent | 8ccbd360068af1993a9359f1d31db70cf5eb8825 (diff) | |
download | linux-0500ce589aa7b5325af161d3c992ffb6be138ff9.tar.xz |
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.h | 16 |
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 @@ -/* - * ST M48T86 / Dallas DS12887 RTC driver - * Copyright (c) 2006 Tower Technologies - * - * Author: Alessandro Zummo <a.zummo@towertech.it> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. -*/ - -struct m48t86_ops -{ - void (*writebyte)(unsigned char value, unsigned long addr); - unsigned char (*readbyte)(unsigned long addr); -}; |