mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
e3d0839aa5
Ensure that the status of all tile associated sysfs entries creation is relayed to xe_tile_init_noalloc, leading to a driver load abort if any sysfs creation failures occur. -v2 Avoid unnecessary warn/error messages. (Lucas) Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240412181211.1155732-7-himal.prasad.ghimiray@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
14 lines
232 B
C
14 lines
232 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_VRAM_FREQ_H_
|
|
#define _XE_VRAM_FREQ_H_
|
|
|
|
struct xe_tile;
|
|
|
|
int xe_vram_freq_sysfs_init(struct xe_tile *tile);
|
|
|
|
#endif /* _XE_VRAM_FREQ_H_ */
|