1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

at91_twi depends on the iicbus module to satisfy its symbols when

loaded, so make that explicit.  Works for the monolithic kernel case,
won't work for the kldload case.
This commit is contained in:
Warner Losh 2007-02-06 12:07:14 +00:00
parent c96ae1968a
commit 21389c94d9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166532

View File

@ -375,3 +375,4 @@ static driver_t at91_twi_driver = {
DRIVER_MODULE(at91_twi, atmelarm, at91_twi_driver, at91_twi_devclass, 0, 0);
DRIVER_MODULE(iicbus, at91_twi, iicbus_driver, iicbus_devclass, 0, 0);
MODULE_DEPEND(at91_twi, iicbus, 1, 1, 1);