1 /* $NetBSD: intel_guc_ads.h,v 1.2 2021/12/18 23:45:31 riastradh Exp $ */ 2 3 /* SPDX-License-Identifier: MIT */ 4 /* 5 * Copyright © 2014-2019 Intel Corporation 6 */ 7 8 #ifndef _INTEL_GUC_ADS_H_ 9 #define _INTEL_GUC_ADS_H_ 10 11 struct intel_guc; 12 13 int intel_guc_ads_create(struct intel_guc *guc); 14 void intel_guc_ads_destroy(struct intel_guc *guc); 15 void intel_guc_ads_reset(struct intel_guc *guc); 16 17 #endif 18