/* * SPDX-License-Identifier: BSD-3-Clause * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. */ #ifndef DEV_TYPE_H #define DEV_TYPE_H /* RmmDevMemCoherent type */ enum dev_coh_type { DEV_MEM_COHERENT, DEV_MEM_NON_COHERENT, DEV_MEM_MAX }; #endif /* DEV_TYPE_H */