mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 02:42:46 +00:00
smmu: Stop checking for failures from malloc(M_WAITOK)
MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D45852
This commit is contained in:
parent
1d321c1907
commit
f75ceecad2
@ -960,10 +960,6 @@ smmu_init_strtab_2lvl(struct smmu_softc *sc)
|
||||
sz = strtab->num_l1_entries * sizeof(struct l1_desc);
|
||||
|
||||
strtab->l1 = malloc(sz, M_SMMU, M_WAITOK | M_ZERO);
|
||||
if (strtab->l1 == NULL) {
|
||||
free(strtab->vaddr, M_SMMU);
|
||||
return (ENOMEM);
|
||||
}
|
||||
|
||||
reg = STRTAB_BASE_CFG_FMT_2LVL;
|
||||
reg |= size << STRTAB_BASE_CFG_LOG2SIZE_S;
|
||||
|
Loading…
Reference in New Issue
Block a user