Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright © 2024 Intel Corporation */
3
4#ifndef _XE_VSEC_H_
5#define _XE_VSEC_H_
6
7#include <linux/types.h>
8
9struct pci_dev;
10struct xe_device;
11
12void xe_vsec_init(struct xe_device *xe);
13int xe_pmt_telem_read(struct pci_dev *pdev, u32 guid, u64 *data, loff_t user_offset, u32 count);
14
15#endif