]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/rtc/rtc-sa1100.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
[mirror_ubuntu-bionic-kernel.git] / drivers / rtc / rtc-sa1100.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
8c0961ba
RH
2#ifndef __RTC_SA1100_H__
3#define __RTC_SA1100_H__
4
5#include <linux/kernel.h>
6
7struct clk;
8struct platform_device;
9
10struct sa1100_rtc {
11 spinlock_t lock;
90d0ae8e
RH
12 void __iomem *rcnr;
13 void __iomem *rtar;
14 void __iomem *rtsr;
15 void __iomem *rttr;
8c0961ba
RH
16 int irq_1hz;
17 int irq_alarm;
18 struct rtc_device *rtc;
19 struct clk *clk;
20};
21
22int sa1100_rtc_init(struct platform_device *pdev, struct sa1100_rtc *info);
23
24#endif