Fix order of last two arguments of mtx_init

Spotted by: jmcneill@NetBSD.org
This commit is contained in:
Oleksandr Tymoshenko 2016-01-14 20:25:22 +00:00
parent 750e48d766
commit ee8ce60b6b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294035

View File

@ -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();