Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/msm: Small uabi fixes

Correct the minor version exposed and error return value for
MSM_INFO_GET_NAME.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/566155/

+2 -2
+2 -2
drivers/gpu/drm/msm/msm_drv.c
··· 39 39 * - 1.11.0 - Add wait boost (MSM_WAIT_FENCE_BOOST, MSM_PREP_BOOST) 40 40 */ 41 41 #define MSM_VERSION_MAJOR 1 42 - #define MSM_VERSION_MINOR 10 42 + #define MSM_VERSION_MINOR 11 43 43 #define MSM_VERSION_PATCHLEVEL 0 44 44 45 45 static void msm_deinit_vram(struct drm_device *ddev); ··· 620 620 break; 621 621 case MSM_INFO_GET_NAME: 622 622 if (args->value && (args->len < strlen(msm_obj->name))) { 623 - ret = -EINVAL; 623 + ret = -ETOOSMALL; 624 624 break; 625 625 } 626 626 args->len = strlen(msm_obj->name);