brintos

brintos / linux-shallow public Read only

0
0
Text · 317 B · b4c4761 Raw
15 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */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