Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 17 lines 308 B view raw
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