dpseci-debugfs.h 556 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
  2. /* Copyright 2019 NXP */
  3. #ifndef DPSECI_DEBUGFS_H
  4. #define DPSECI_DEBUGFS_H
  5. #include <linux/dcache.h>
  6. #include "caamalg_qi2.h"
  7. #ifdef CONFIG_DEBUG_FS
  8. void dpaa2_dpseci_debugfs_init(struct dpaa2_caam_priv *priv);
  9. void dpaa2_dpseci_debugfs_exit(struct dpaa2_caam_priv *priv);
  10. #else
  11. static inline void dpaa2_dpseci_debugfs_init(struct dpaa2_caam_priv *priv) {}
  12. static inline void dpaa2_dpseci_debugfs_exit(struct dpaa2_caam_priv *priv) {}
  13. #endif /* CONFIG_DEBUG_FS */
  14. #endif /* DPSECI_DEBUGFS_H */