diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-05-30 20:58:00 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-06-04 00:23:34 +0200 |
commit | 169047f447e8e7a56b459e13d86e1fc06457461a (patch) | |
tree | bb9c57b1691f35604a7cb5f9955d4e16bc322460 /drivers/rtc | |
parent | 084b3600e2d98ebbab968f91b8b8f48ffbbf2ecb (diff) | |
download | linux-169047f447e8e7a56b459e13d86e1fc06457461a.tar.gz linux-169047f447e8e7a56b459e13d86e1fc06457461a.tar.bz2 linux-169047f447e8e7a56b459e13d86e1fc06457461a.zip |
rtc: powerpc: provide rtc_class_ops directly
The rtc-generic driver provides an architecture specific
wrapper on top of the generic rtc_class_ops abstraction,
and powerpc has another abstraction on top, which is a bit
silly.
This changes the powerpc rtc-generic device to provide its
rtc_class_ops directly, to reduce the number of layers
by one.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Michael Ellerman <mpe@ellerman.id.au>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-generic.c b/drivers/rtc/rtc-generic.c index 5c82bae73b9c..efcb9833cac8 100644 --- a/drivers/rtc/rtc-generic.c +++ b/drivers/rtc/rtc-generic.c @@ -9,7 +9,7 @@ #include <linux/platform_device.h> #include <linux/rtc.h> -#if defined(CONFIG_PPC) +#if 0 #include <asm/rtc.h> static int generic_get_time(struct device *dev, struct rtc_time *tm) |