diff options
| author | Emmanuel Vadot <manu@FreeBSD.org> | 2019-04-25 18:40:23 +0000 |
|---|---|---|
| committer | Emmanuel Vadot <manu@FreeBSD.org> | 2019-04-25 18:40:23 +0000 |
| commit | dbc8d8a261dcb63a7a45f038647ed97aab81eaf7 (patch) | |
| tree | 4c04295493b9978f2cff9da89a8c1ee1f2171c8a /sys/modules/allwinner | |
| parent | f9b1c6a02979574e29eb977687c7524aaeabd202 (diff) | |
Notes
Diffstat (limited to 'sys/modules/allwinner')
| -rw-r--r-- | sys/modules/allwinner/Makefile | 3 | ||||
| -rw-r--r-- | sys/modules/allwinner/axp81x/Makefile | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/sys/modules/allwinner/Makefile b/sys/modules/allwinner/Makefile index 111d657badd9..6c7ccc1f5b9d 100644 --- a/sys/modules/allwinner/Makefile +++ b/sys/modules/allwinner/Makefile @@ -4,6 +4,7 @@ SUBDIR = \ aw_sid \ aw_spi \ - aw_thermal + aw_thermal \ + axp81x .include <bsd.subdir.mk> diff --git a/sys/modules/allwinner/axp81x/Makefile b/sys/modules/allwinner/axp81x/Makefile new file mode 100644 index 000000000000..890046f355d2 --- /dev/null +++ b/sys/modules/allwinner/axp81x/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/arm/allwinner + +KMOD= axp81x +SRCS= axp81x.c + +SRCS+= \ + bus_if.h \ + clknode_if.h \ + device_if.h \ + ofw_bus_if.h \ + iicbus_if.h + +.include <bsd.kmod.mk> |
