// Copyright 2018 The Fuchsia Authors // // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file or at // https://opensource.org/licenses/MIT #include #include #include "iommu_impl.h" zx_status_t IntelIommu::Create(ktl::unique_ptr desc, size_t desc_len, fbl::RefPtr* out) { return intel_iommu::IommuImpl::Create(ktl::move(desc), desc_len, out); }