mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 22:52:19 +02:00
Driver Changes:
- An error path fix. -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQRskUM7w1oG5rx2IZO4FpNVCsYGvwUCZemaWwAKCRC4FpNVCsYG v/KOAQCQaXfOPbmgz/PIJdEo+PPDzVw/PDsP2bq/bhNhycFV5QEApPk/kp+5U53q Bh8Rmjmzlz8wbYawIBxAwSofJGST4ws= =4GYq -----END PGP SIGNATURE----- Merge tag 'drm-xe-fixes-2024-03-07' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-fixes Driver Changes: - An error path fix. Signed-off-by: Dave Airlie <airlied@redhat.com> From: Thomas Hellstrom <thomas.hellstrom@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/Zema9lLEdtMISljc@fedora
This commit is contained in:
commit
3a397b131d
|
|
@ -167,9 +167,10 @@ int xe_tile_init_noalloc(struct xe_tile *tile)
|
|||
goto err_mem_access;
|
||||
|
||||
tile->mem.kernel_bb_pool = xe_sa_bo_manager_init(tile, SZ_1M, 16);
|
||||
if (IS_ERR(tile->mem.kernel_bb_pool))
|
||||
if (IS_ERR(tile->mem.kernel_bb_pool)) {
|
||||
err = PTR_ERR(tile->mem.kernel_bb_pool);
|
||||
|
||||
goto err_mem_access;
|
||||
}
|
||||
xe_wa_apply_tile_workarounds(tile);
|
||||
|
||||
xe_tile_sysfs_init(tile);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user