mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
16 lines
261 B
C
16 lines
261 B
C
|
/*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
* Copyright © 2019 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef INTEL_LLC_H
|
||
|
#define INTEL_LLC_H
|
||
|
|
||
|
struct intel_llc;
|
||
|
|
||
|
void intel_llc_enable(struct intel_llc *llc);
|
||
|
void intel_llc_disable(struct intel_llc *llc);
|
||
|
|
||
|
#endif /* INTEL_LLC_H */
|