mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00
15 lines
321 B
C
15 lines
321 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
/* Copyright(c) 2023 Intel Corporation */
|
||
|
#ifndef ADF_CLOCK_H
|
||
|
#define ADF_CLOCK_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
struct adf_accel_dev;
|
||
|
|
||
|
int adf_dev_measure_clock(struct adf_accel_dev *accel_dev, u32 *frequency,
|
||
|
u32 min, u32 max);
|
||
|
u64 adf_clock_get_current_time(void);
|
||
|
|
||
|
#endif
|