mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
This is a simple RTC driver for the rv3032 from Microcrystal.
Just the basic functionality is implemented (no timer, alarm etc ..).
Sponsored by: Beckhoff Automation GmbH & Co. KG
Differential Revision: https://reviews.freebsd.org/D41995
(cherry picked from commit 1d6a6a5244)
13 lines
184 B
Makefile
13 lines
184 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/rtc
|
|
KMOD= rv3032
|
|
SRCS= rv3032.c
|
|
|
|
SRCS+= bus_if.h \
|
|
clock_if.h \
|
|
device_if.h \
|
|
iicbus_if.h \
|
|
opt_platform.h \
|
|
ofw_bus_if.h
|
|
|
|
.include <bsd.kmod.mk>
|