mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Add basic debugfs infrastructure for Broadcom next generation controller. Signed-off-by: Siva Reddy Kallam <siva.kallam@broadcom.com> Link: https://patch.msgid.link/20251117171136.128193-8-siva.kallam@broadcom.com Reviewed-by: Usman Ansari <usman.ansari@broadcom.com> Signed-off-by: Leon Romanovsky <leon@kernel.org>
13 lines
319 B
C
13 lines
319 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
// Copyright (c) 2025 Broadcom.
|
|
|
|
#ifndef __BNG_RE_DEBUGFS__
|
|
#define __BNG_RE_DEBUGFS__
|
|
|
|
void bng_re_debugfs_add_pdev(struct bng_re_dev *rdev);
|
|
void bng_re_debugfs_rem_pdev(struct bng_re_dev *rdev);
|
|
|
|
void bng_re_register_debugfs(void);
|
|
void bng_re_unregister_debugfs(void);
|
|
#endif
|