1// Copyright 2018 The Fuchsia Authors
2//
3// Use of this source code is governed by a MIT-style
4// license that can be found in the LICENSE file or at
5// https://opensource.org/licenses/MIT
6
7#include <dev/iommu/intel.h>
8#include "iommu_impl.h"
9
10zx_status_t IntelIommu::Create(fbl::unique_ptr<const uint8_t[]> desc, size_t desc_len,
11                               fbl::RefPtr<Iommu>* out) {
12    return intel_iommu::IommuImpl::Create(fbl::move(desc), desc_len, out);
13}
14