mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 01:31:45 -05:00
11 lines
322 B
C
11 lines
322 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/* Copyright(c) 2007-2022 Intel Corporation */
|
|
#ifndef ADF_CFG_DEV_DBG_H_
|
|
#define ADF_CFG_DEV_DBG_H_
|
|
|
|
struct adf_accel_dev;
|
|
|
|
int adf_cfg_dev_dbg_add(struct adf_accel_dev *accel_dev);
|
|
void adf_cfg_dev_dbg_remove(struct adf_accel_dev *accel_dev);
|
|
|
|
#endif /* ADF_CFG_DEV_DBG_H_ */
|