xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/intel_llc.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: intel_llc.h,v 1.2 2021/12/18 23:45:30 riastradh Exp $	*/
2 
3 /*
4  * SPDX-License-Identifier: MIT
5  *
6  * Copyright © 2019 Intel Corporation
7  */
8 
9 #ifndef INTEL_LLC_H
10 #define INTEL_LLC_H
11 
12 struct intel_llc;
13 
14 void intel_llc_enable(struct intel_llc *llc);
15 void intel_llc_disable(struct intel_llc *llc);
16 
17 #endif /* INTEL_LLC_H */
18