039c8db774
On the BeagleBoard-xM, the RTC is located on the Power Management IC (PMIC). To keep things consistent, access to the PMIC's RTC is done through the readclock driver. The readclock driver forwards the request on to the TPS65950 driver which does the work of manipulating the registers on the chip. Change-Id: I53cefbb59c5a9ab87fab90df3cc1a75a6e430f58
10 lines
209 B
Makefile
10 lines
209 B
Makefile
# Makefile for arch-dependent readclock code
|
|
.include <bsd.own.mk>
|
|
|
|
HERE=${.CURDIR}/arch/${MACHINE_ARCH}
|
|
.PATH: ${HERE}
|
|
|
|
SRCS += arch_readclock.c omap_rtc.c omap_rtc.h
|
|
|
|
DPADD+= ${CLKCONF}
|
|
LDADD+= -lclkconf
|