1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright �� 2023 Intel Corporation
4 */
5
6#ifndef __I915_DEBUGFS_H__
7#define __I915_DEBUGFS_H__
8
9struct drm_i915_gem_object;
10struct seq_file;
11
12static inline void i915_debugfs_describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj) {}
13
14#endif /* __I915_DEBUGFS_H__ */
15