blob: 49266c9c3016a209d0fed1b0af672eb39c9af099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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_ */
|