mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
One doc fix for drm/connector, one fix for amdgpu for an crash when
VRAM usage is high, and one fix in gm12u320 to fix the timeout units in the code -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQRcEzekXsqa64kGDp7j7w1vZxhRxQUCZPl/TAAKCRDj7w1vZxhR xWZZAP0b3k5vIuQdbiZBdXy7+guakiJ2DqOMxJJ+sYS5Mun53AEA73Cu1gmBNMoT d8H1uBjOfvPcXANNI0t0OgJfrESOdg8= =atPC -----END PGP SIGNATURE----- Merge tag 'drm-misc-fixes-2023-09-07' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes One doc fix for drm/connector, one fix for amdgpu for an crash when VRAM usage is high, and one fix in gm12u320 to fix the timeout units in the code Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> From: Maxime Ripard <mripard@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/w5nlld5ukeh6bgtljsxmkex3e7s7f4qquuqkv5lv4cv3uxzwqr@pgokpejfsyef
This commit is contained in:
commit
15794f9dc3
@ -81,7 +81,7 @@ int amdgpu_sa_bo_new(struct amdgpu_sa_manager *sa_manager,
|
||||
unsigned int size)
|
||||
{
|
||||
struct drm_suballoc *sa = drm_suballoc_new(&sa_manager->base, size,
|
||||
GFP_KERNEL, true, 0);
|
||||
GFP_KERNEL, false, 0);
|
||||
|
||||
if (IS_ERR(sa)) {
|
||||
*sa_bo = NULL;
|
||||
|
@ -2203,6 +2203,7 @@ static int drm_mode_create_colorspace_property(struct drm_connector *connector,
|
||||
/**
|
||||
* drm_mode_create_hdmi_colorspace_property - create hdmi colorspace property
|
||||
* @connector: connector to create the Colorspace property on.
|
||||
* @supported_colorspaces: bitmap of supported color spaces
|
||||
*
|
||||
* Called by a driver the first time it's needed, must be attached to desired
|
||||
* HDMI connectors.
|
||||
@ -2227,6 +2228,7 @@ EXPORT_SYMBOL(drm_mode_create_hdmi_colorspace_property);
|
||||
/**
|
||||
* drm_mode_create_dp_colorspace_property - create dp colorspace property
|
||||
* @connector: connector to create the Colorspace property on.
|
||||
* @supported_colorspaces: bitmap of supported color spaces
|
||||
*
|
||||
* Called by a driver the first time it's needed, must be attached to desired
|
||||
* DP connectors.
|
||||
|
@ -70,10 +70,10 @@ MODULE_PARM_DESC(eco_mode, "Turn on Eco mode (less bright, more silent)");
|
||||
#define READ_STATUS_SIZE 13
|
||||
#define MISC_VALUE_SIZE 4
|
||||
|
||||
#define CMD_TIMEOUT msecs_to_jiffies(200)
|
||||
#define DATA_TIMEOUT msecs_to_jiffies(1000)
|
||||
#define IDLE_TIMEOUT msecs_to_jiffies(2000)
|
||||
#define FIRST_FRAME_TIMEOUT msecs_to_jiffies(2000)
|
||||
#define CMD_TIMEOUT 200
|
||||
#define DATA_TIMEOUT 1000
|
||||
#define IDLE_TIMEOUT 2000
|
||||
#define FIRST_FRAME_TIMEOUT 2000
|
||||
|
||||
#define MISC_REQ_GET_SET_ECO_A 0xff
|
||||
#define MISC_REQ_GET_SET_ECO_B 0x35
|
||||
@ -389,7 +389,7 @@ static void gm12u320_fb_update_work(struct work_struct *work)
|
||||
* switches back to showing its logo.
|
||||
*/
|
||||
queue_delayed_work(system_long_wq, &gm12u320->fb_update.work,
|
||||
IDLE_TIMEOUT);
|
||||
msecs_to_jiffies(IDLE_TIMEOUT));
|
||||
|
||||
return;
|
||||
err:
|
||||
|
Loading…
Reference in New Issue
Block a user