mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
1c0ab408bb
Add support of printing the dpseci frame queue statistics using debugfs. Signed-off-by: Vakul Garg <vakul.garg@nxp.com> Reviewed-by: Horia Geantă <horia.geanta@nxp.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
19 lines
556 B
C
19 lines
556 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
|
|
/* Copyright 2019 NXP */
|
|
|
|
#ifndef DPSECI_DEBUGFS_H
|
|
#define DPSECI_DEBUGFS_H
|
|
|
|
#include <linux/dcache.h>
|
|
#include "caamalg_qi2.h"
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
void dpaa2_dpseci_debugfs_init(struct dpaa2_caam_priv *priv);
|
|
void dpaa2_dpseci_debugfs_exit(struct dpaa2_caam_priv *priv);
|
|
#else
|
|
static inline void dpaa2_dpseci_debugfs_init(struct dpaa2_caam_priv *priv) {}
|
|
static inline void dpaa2_dpseci_debugfs_exit(struct dpaa2_caam_priv *priv) {}
|
|
#endif /* CONFIG_DEBUG_FS */
|
|
|
|
#endif /* DPSECI_DEBUGFS_H */
|