svn commit: r346698 - in head/sys/modules/allwinner: . aw_pwm

Emmanuel Vadot manu at FreeBSD.org
Thu Apr 25 18:44:05 UTC 2019


Author: manu
Date: Thu Apr 25 18:44:03 2019
New Revision: 346698
URL: https://svnweb.freebsd.org/changeset/base/346698

Log:
  arm: allwinner: aw_pwm: compile it as module too
  
  MFC after:	1 month

Added:
  head/sys/modules/allwinner/aw_pwm/
  head/sys/modules/allwinner/aw_pwm/Makefile   (contents, props changed)
Modified:
  head/sys/modules/allwinner/Makefile

Modified: head/sys/modules/allwinner/Makefile
==============================================================================
--- head/sys/modules/allwinner/Makefile	Thu Apr 25 18:43:01 2019	(r346697)
+++ head/sys/modules/allwinner/Makefile	Thu Apr 25 18:44:03 2019	(r346698)
@@ -2,6 +2,7 @@
 # Build modules specific to Allwinner.
 
 SUBDIR = \
+	aw_pwm \
 	aw_rtc \
 	aw_rsb \
 	aw_sid \

Added: head/sys/modules/allwinner/aw_pwm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/allwinner/aw_pwm/Makefile	Thu Apr 25 18:44:03 2019	(r346698)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/arm/allwinner
+
+KMOD=	aw_pwm
+SRCS=	aw_pwm.c
+
+SRCS+=	\
+	bus_if.h \
+	clknode_if.h \
+	device_if.h \
+	ofw_bus_if.h \
+	pwm_if.h
+
+.include <bsd.kmod.mk>


More information about the svn-src-head mailing list