mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make ichsmb loadable.
PR: kern/81912 Submitted by: nork
This commit is contained in:
parent
708c604382
commit
6193c1880d
2 changed files with 11 additions and 0 deletions
|
|
@ -224,3 +224,6 @@ fail:
|
|||
return (error);
|
||||
}
|
||||
|
||||
MODULE_DEPEND(ichsmb, pci, 1, 1, 1);
|
||||
MODULE_DEPEND(ichsmb, smbus, SMBUS_MINVER, SMBUS_PREFVER, SMBUS_MAXVER);
|
||||
MODULE_VERSION(ichsmb, 1);
|
||||
|
|
|
|||
8
sys/modules/i2c/controllers/ichsmb/Makefile
Normal file
8
sys/modules/i2c/controllers/ichsmb/Makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#$FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../dev/ichsmb
|
||||
KMOD = ichsmb
|
||||
SRCS = device_if.h bus_if.h iicbb_if.h pci_if.h smbus_if.h \
|
||||
ichsmb.c ichsmb_pci.c ichsmb_reg.h ichsmb_var.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
Loading…
Reference in a new issue