mirror of
https://github.com/opnsense/src.git
synced 2026-03-07 07:44:13 -05:00
This patch introduces support for Epson RX-8803 RTC controller accessible over I2C bus. It has a resolution of 1 sec. Support for interrupt based alarm was not implemented. Submitted by: Kornel Duleba <mindal@semihalf.com> Reviewed by: manu Obtained from: Semihalf Sponsored by: Alstom Group Differential Revision: https://reviews.freebsd.org/D24364
16 lines
225 B
Makefile
16 lines
225 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/rtc/
|
|
KMOD = rx8803
|
|
SRCS = rx8803.c
|
|
|
|
# Generated files...
|
|
SRCS+= \
|
|
bus_if.h \
|
|
clock_if.h \
|
|
device_if.h \
|
|
iicbus_if.h \
|
|
opt_platform.h \
|
|
ofw_bus_if.h \
|
|
|
|
.include <bsd.kmod.mk>
|