enetc4_debugfs.h 419 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
  2. /* Copyright 2025 NXP */
  3. #ifndef __ENETC4_DEBUGFS_H
  4. #define __ENETC4_DEBUGFS_H
  5. #if IS_ENABLED(CONFIG_DEBUG_FS)
  6. void enetc_create_debugfs(struct enetc_si *si);
  7. void enetc_remove_debugfs(struct enetc_si *si);
  8. #else
  9. static inline void enetc_create_debugfs(struct enetc_si *si)
  10. {
  11. }
  12. static inline void enetc_remove_debugfs(struct enetc_si *si)
  13. {
  14. }
  15. #endif
  16. #endif