blob: efeb6d78da1719e5d68175f0b28e8b31d7410c29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// SPDX-License-Identifier: GPL-2.0-only
// Miscellaneous Arm SMMU implementation and integration quirks
// Copyright (C) 2019 Arm Limited
#define pr_fmt(fmt) "arm-smmu: " fmt
#include "arm-smmu.h"
struct arm_smmu_device *arm_smmu_impl_init(struct arm_smmu_device *smmu)
{
return smmu;
}
|