Linux Audio

Check our new training course

Loading...
Note: File does not exist in v5.9.
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2022 Intel Corporation
 4 */
 5
 6#ifndef _XE_RING_OPS_H_
 7#define _XE_RING_OPS_H_
 8
 9#include "xe_hw_engine_types.h"
10#include "xe_ring_ops_types.h"
11
12struct xe_gt;
13
14const struct xe_ring_ops *
15xe_ring_ops_get(struct xe_gt *gt, enum xe_engine_class class);
16
17#endif