ivpu_debugfs.h 365 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2020-2023 Intel Corporation
  4. */
  5. #ifndef __IVPU_DEBUGFS_H__
  6. #define __IVPU_DEBUGFS_H__
  7. struct ivpu_device;
  8. #if defined(CONFIG_DEBUG_FS)
  9. void ivpu_debugfs_init(struct ivpu_device *vdev);
  10. #else
  11. static inline void ivpu_debugfs_init(struct ivpu_device *vdev) { }
  12. #endif
  13. #endif /* __IVPU_DEBUGFS_H__ */