Clean up the SPDX licence declarations to comply with checkpatch. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210122192913.4518-1-chris@chris-wilson.co.uk Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
15 lines
261 B
C
15 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 */
|