参照元

説明

引数

返り値

参考

IOMMU 操作を追加する関数

実装

struct iommu_ops *of_iommu_get_ops(struct device_node *np)
{
	struct of_iommu_node *node;
	struct iommu_ops *ops = NULL;
	spin_lock(&of_iommu_lock);
	list_for_each_entry(node, &of_iommu_list, list)
		if (node->np == np) {
			ops = node->ops;
			break;
		}
	spin_unlock(&of_iommu_lock);
	return ops;
}

コメント


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS