1 /* $NetBSD: intel_llc_types.h,v 1.3 2021/12/19 11:46:38 riastradh Exp $ */ 2 3 /* 4 * SPDX-License-Identifier: MIT 5 * 6 * Copyright © 2019 Intel Corporation 7 */ 8 9 #ifndef INTEL_LLC_TYPES_H 10 #define INTEL_LLC_TYPES_H 11 12 struct intel_llc { 13 int x; /* XXX only exists because container_of on empty aggregate is an error */ 14 }; 15 16 #endif /* INTEL_LLC_TYPES_H */ 17