mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
arm: allwinner: Add pnpinfo for aw_sid and add module Makefile
MFC after: 1 month
This commit is contained in:
parent
e3a883c386
commit
db0e5bf390
3 changed files with 16 additions and 0 deletions
|
|
@ -414,3 +414,4 @@ static devclass_t aw_sid_devclass;
|
|||
EARLY_DRIVER_MODULE(aw_sid, simplebus, aw_sid_driver, aw_sid_devclass, 0, 0,
|
||||
BUS_PASS_RESOURCE + BUS_PASS_ORDER_FIRST);
|
||||
MODULE_VERSION(aw_sid, 1);
|
||||
SIMPLEBUS_PNP_INFO(compat_data);
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# Build modules specific to Allwinner.
|
||||
|
||||
SUBDIR = \
|
||||
aw_sid \
|
||||
aw_spi \
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
|||
14
sys/modules/allwinner/aw_sid/Makefile
Normal file
14
sys/modules/allwinner/aw_sid/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.PATH: ${SRCTOP}/sys/arm/allwinner
|
||||
|
||||
KMOD= aw_sid
|
||||
SRCS= aw_sid.c
|
||||
|
||||
SRCS+= \
|
||||
bus_if.h \
|
||||
clknode_if.h \
|
||||
device_if.h \
|
||||
ofw_bus_if.h \
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue