diff options
| author | Thomas Zimmermann <[email protected]> | 2022-10-06 09:53:42 +0000 |
|---|---|---|
| committer | Thomas Zimmermann <[email protected]> | 2022-10-07 11:45:27 +0000 |
| commit | 2c1eafc40e53312864bf2fdccb55052dcbd9e8b2 (patch) | |
| tree | 8f38da027ef2413bfa2f5b7148b9ed6d8f2067e7 | |
| parent | drm/udl: Test pixel limit in mode-config's mode-valid function (diff) | |
| download | kernel-2c1eafc40e53312864bf2fdccb55052dcbd9e8b2.tar.gz kernel-2c1eafc40e53312864bf2fdccb55052dcbd9e8b2.zip | |
drm/udl: Use USB timeout constant when reading EDID
Set the USB control-message timeout to the USB default of 5 seconds.
Done for consistency with other uses of usb_control_msg() in udl and
other drivers.
Signed-off-by: Thomas Zimmermann <[email protected]>
Reviewed-by: Javier Martinez Canillas <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
| -rw-r--r-- | drivers/gpu/drm/udl/udl_connector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/udl/udl_connector.c b/drivers/gpu/drm/udl/udl_connector.c index e9539829032c..cb3d6820eaf9 100644 --- a/drivers/gpu/drm/udl/udl_connector.c +++ b/drivers/gpu/drm/udl/udl_connector.c @@ -31,7 +31,7 @@ static int udl_get_edid_block(void *data, u8 *buf, unsigned int block, int bval = (i + block * EDID_LENGTH) << 8; ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x02, (0x80 | (0x02 << 5)), bval, - 0xA1, read_buff, 2, 1000); + 0xA1, read_buff, 2, USB_CTRL_GET_TIMEOUT); if (ret < 1) { DRM_ERROR("Read EDID byte %d failed err %x\n", i, ret); kfree(read_buff); |
