diff options
| author | Dave Airlie <airlied@redhat.com> | 2026-06-26 08:16:14 +1000 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2026-06-26 08:16:41 +1000 |
| commit | f24ba334afafc70c3149e9db9c0cf8ecc6d52a09 (patch) | |
| tree | 2d4bb0ee67c5db28de37f2e4d876d02edf465e21 /include | |
| parent | 8cd9520d35a6c38db6567e97dd93b1f11f185dc6 (diff) | |
| parent | 9206b22fb959f4a9cf1921f34aed0df1dcb1ab04 (diff) | |
| download | ath-f24ba334afafc70c3149e9db9c0cf8ecc6d52a09.tar.gz | |
Merge tag 'drm-misc-fixes-2026-06-25' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-fixes
drm-misc-fixes for v7.2:
- drm/sysfb truncation and alignment fixes.
- fix edid OOB read.
- fix error handling paths in nouveau
- amdxdna get_bo_info fix.
- increase displayid topology id to correct size.
- fix leak when error handling in ivpu.
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patch.msgid.link/2d17f718-43f5-4772-9c04-a975c9ad4bc3@linux.intel.com
Diffstat (limited to 'include')
| -rw-r--r-- | include/drm/drm_connector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index f83f28cae2075..877b5ca87e95b 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -2608,13 +2608,13 @@ struct drm_tile_group { struct kref refcount; struct drm_device *dev; int id; - u8 group_data[8]; + u8 group_data[9]; }; struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, - const char topology[8]); + const char topology_id[9]); struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, - const char topology[8]); + const char topology_id[9]); void drm_mode_put_tile_group(struct drm_device *dev, struct drm_tile_group *tg); |
