mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Fix order of last two arguments of mtx_init
Spotted by: jmcneill@NetBSD.org
This commit is contained in:
parent
750e48d766
commit
ee8ce60b6b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294035
@ -173,7 +173,7 @@ bcm_vchiq_attach(device_t dev)
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
mtx_init(&sc->lock, "vchiq", MTX_DEF, 0);
|
||||
mtx_init(&sc->lock, "vchiq", 0, MTX_DEF);
|
||||
bcm_vchiq_sc = sc;
|
||||
|
||||
vchiq_init();
|
||||
|
Loading…
Reference in New Issue
Block a user