Home | History | Annotate | Line # | Download | only in gt
      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