1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* Copyright(c) 2024-2025 Intel Corporation. */ 3 #ifndef __CXL_FEATURES_H__ 4 #define __CXL_FEATURES_H__ 5 6 /* Feature commands capability supported by a device */ 7 enum cxl_features_capability { 8 CXL_FEATURES_NONE = 0, 9 CXL_FEATURES_RO, 10 CXL_FEATURES_RW, 11 }; 12 13 #endif 14