1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2014-2021 Intel Corporation 4 */ 5 6 #ifndef _ABI_GUC_ERRORS_ABI_H 7 #define _ABI_GUC_ERRORS_ABI_H 8 9 enum intel_guc_response_status { 10 INTEL_GUC_RESPONSE_STATUS_SUCCESS = 0x0, 11 INTEL_GUC_RESPONSE_STATUS_GENERIC_FAIL = 0xF000, 12 }; 13 14 #endif /* _ABI_GUC_ERRORS_ABI_H */ 15