Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Apr 2019 18:44:04 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r346698 - in head/sys/modules/allwinner: . aw_pwm
Message-ID:  <201904251844.x3PIi4PC096127@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904251844.x3PIi4PC096127>