18 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (C) 2020-2023 Intel Corporation4 */5 6#ifndef __IVPU_DEBUGFS_H__7#define __IVPU_DEBUGFS_H__8 9struct ivpu_device;10 11#if defined(CONFIG_DEBUG_FS)12void ivpu_debugfs_init(struct ivpu_device *vdev);13#else14static inline void ivpu_debugfs_init(struct ivpu_device *vdev) { }15#endif16 17#endif /* __IVPU_DEBUGFS_H__ */18