blob: 2b58b65fe0de31977a7f64e440ff4ef5331e1094 [file] [log] [blame]
// 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 <dev/iommu/intel.h>
#include <ktl/move.h>
#include "iommu_impl.h"
zx_status_t IntelIommu::Create(ktl::unique_ptr<const uint8_t[]> desc, size_t desc_len,
fbl::RefPtr<Iommu>* out) {
return intel_iommu::IommuImpl::Create(ktl::move(desc), desc_len, out);
}