brintos

brintos / linux-shallow public Read only

0
0
Text · 627 B · 1de2736 Raw
23 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2019 Intel Corporation4 */5 6#ifndef __I915_DEBUGFS_H__7#define __I915_DEBUGFS_H__8 9struct drm_connector;10struct drm_i915_gem_object;11struct drm_i915_private;12struct seq_file;13 14#ifdef CONFIG_DEBUG_FS15void i915_debugfs_register(struct drm_i915_private *dev_priv);16void i915_debugfs_describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj);17#else18static inline void i915_debugfs_register(struct drm_i915_private *dev_priv) {}19static inline void i915_debugfs_describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj) {}20#endif21 22#endif /* __I915_DEBUGFS_H__ */23