2022-07-15 19:12:14 +08:00
|
|
|
/*
|
2024-03-26 22:22:57 +08:00
|
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
2022-07-15 19:12:14 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-08-24 22:41:13 +08:00
|
|
|
#pragma once
|
|
|
|
|
2024-03-26 22:22:57 +08:00
|
|
|
#ifndef _I915_DRM_H_
|
2022-07-18 20:53:55 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
2022-07-15 19:12:14 +08:00
|
|
|
namespace NEO {
|
|
|
|
namespace I915 {
|
2024-03-28 21:31:57 +08:00
|
|
|
#include "i915_drm.h"
|
2022-07-15 19:12:14 +08:00
|
|
|
}
|
|
|
|
} // namespace NEO
|
2024-03-28 21:31:57 +08:00
|
|
|
using namespace NEO::I915;
|
2022-07-18 20:53:55 +08:00
|
|
|
|
|
|
|
#endif
|