diff options
author | 2019-12-31 23:50:19 +0000 | |
---|---|---|
committer | 2019-12-31 23:50:19 +0000 | |
commit | f9f2ae1999a33bbfc29a7b6a327de98e869da77c (patch) | |
tree | 85eb3fd440d238624b7457d5cf88a4af25c95f36 /sys/dev/pci/drm/include | |
parent | convert infinite msleep(9) to msleep_nsec(9) (diff) | |
download | wireguard-openbsd-f9f2ae1999a33bbfc29a7b6a327de98e869da77c.tar.xz wireguard-openbsd-f9f2ae1999a33bbfc29a7b6a327de98e869da77c.zip |
drm: mst: Fix query_payload ack reply struct
From Sean Paul
f015785ae7fbf7a817b74b4001f92ca3070aa718 in linux 4.19.y/4.19.92
268de6530aa18fe5773062367fd119f0045f6e88 in mainline linux
Diffstat (limited to 'sys/dev/pci/drm/include')
-rw-r--r-- | sys/dev/pci/drm/include/drm/drm_dp_mst_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/include/drm/drm_dp_mst_helper.h b/sys/dev/pci/drm/include/drm/drm_dp_mst_helper.h index 7e1e258b1f0..4070429fb32 100644 --- a/sys/dev/pci/drm/include/drm/drm_dp_mst_helper.h +++ b/sys/dev/pci/drm/include/drm/drm_dp_mst_helper.h @@ -313,7 +313,7 @@ struct drm_dp_resource_status_notify { struct drm_dp_query_payload_ack_reply { u8 port_number; - u8 allocated_pbn; + u16 allocated_pbn; }; struct drm_dp_sideband_msg_req_body { |