/* SPDX-License-Identifier: MIT */ /* * Copyright © 2023 Intel Corporation */ #ifndef _XE_TILE_SYSFS_TYPES_H_ #define _XE_TILE_SYSFS_TYPES_H_ #include <linux/kobject.h> struct xe_tile; /** * struct kobj_tile - A tile's kobject struct that connects the kobject * and the TILE * * When dealing with multiple TILEs, this struct helps to understand which * TILE needs to be addressed on a given sysfs call. */ struct kobj_tile { … }; #endif /* _XE_TILE_SYSFS_TYPES_H_ */