svn commit: r345022 - head/sys/x86/isa

Vladimir Kondratyev wulf at FreeBSD.org
Mon Mar 11 19:46:16 UTC 2019


Author: wulf
Date: Mon Mar 11 19:46:15 2019
New Revision: 345022
URL: https://svnweb.freebsd.org/changeset/base/345022

Log:
  Fix amd64/i386 LINT build after r344982
  
  Submitted by:	jkim
  Reported by:	rpokala
  MFC with:	r344982

Modified:
  head/sys/x86/isa/atrtc.c

Modified: head/sys/x86/isa/atrtc.c
==============================================================================
--- head/sys/x86/isa/atrtc.c	Mon Mar 11 19:15:57 2019	(r345021)
+++ head/sys/x86/isa/atrtc.c	Mon Mar 11 19:46:15 2019	(r345022)
@@ -83,6 +83,11 @@ static	int	rtc_reg = -1;
 static	u_char	rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
 static	u_char	rtc_statusb = RTCSB_24HR;
 
+#ifdef DEV_ACPI
+#define	_COMPONENT	ACPI_TIMER
+ACPI_MODULE_NAME("ATRTC")
+#endif
+
 /*
  * RTC support routines
  */


More information about the svn-src-all mailing list