mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
16 lines
418 B
C
16 lines
418 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/* Copyright(c) 2007-2022 Intel Corporation */
|
|
#ifndef ADF_GEN4_TIMER_H_
|
|
#define ADF_GEN4_TIMER_H_
|
|
|
|
struct adf_accel_dev;
|
|
|
|
struct adf_hb_timer_data {
|
|
struct adf_accel_dev *accel_dev;
|
|
struct work_struct hb_int_timer_work;
|
|
};
|
|
|
|
int adf_int_timer_init(struct adf_accel_dev *accel_dev);
|
|
void adf_int_timer_exit(struct adf_accel_dev *accel_dev);
|
|
|
|
#endif /* ADF_GEN4_TIMER_H_ */
|