1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2021 Intel Corporation
*/
#ifndef _I915_DRM_LOCAL_H_
#define _I915_DRM_LOCAL_H_
#if defined(__cplusplus)
extern "C" {
#endif
/*
* It is necessary on occasion to add uapi declarations to IGT before they
* appear in imported kernel uapi headers. This header is provided for this
* purpose.
* Early uapi declarations should be added here exactly as they are
* expected to appear in the kernel uapi headers, i.e. without the LOCAL_
* or local_ prefix and without any #ifndef's. Attempt should be made to
* clean these up when kernel uapi headers are sync'd.
*/
#if defined(__cplusplus)
}
#endif
#endif /* _I915_DRM_LOCAL_H_ */
|