mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-24 03:24:55 +08:00
drm/amdgpu: rename amdgpu_modeset_create_props
Add display to the name for consistency. Signed-off-by: Samuel Li <Samuel.Li@amd.com> Acked-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
4d4772f6ab
commit
3dc9b1ce80
@ -597,7 +597,7 @@ static const struct drm_prop_enum_list amdgpu_dither_enum_list[] =
|
||||
{ AMDGPU_FMT_DITHER_ENABLE, "on" },
|
||||
};
|
||||
|
||||
int amdgpu_modeset_create_props(struct amdgpu_device *adev)
|
||||
int amdgpu_display_modeset_create_props(struct amdgpu_device *adev)
|
||||
{
|
||||
int sz;
|
||||
|
||||
|
@ -664,7 +664,7 @@ int amdgpu_align_pitch(struct amdgpu_device *adev, int width, int bpp, bool tile
|
||||
|
||||
/* amdgpu_display.c */
|
||||
void amdgpu_display_print_display_setup(struct drm_device *dev);
|
||||
int amdgpu_modeset_create_props(struct amdgpu_device *adev);
|
||||
int amdgpu_display_modeset_create_props(struct amdgpu_device *adev);
|
||||
int amdgpu_display_crtc_set_config(struct drm_mode_set *set,
|
||||
struct drm_modeset_acquire_ctx *ctx);
|
||||
int amdgpu_display_crtc_page_flip_target(struct drm_crtc *crtc,
|
||||
|
@ -2826,7 +2826,7 @@ static int dce_v10_0_sw_init(void *handle)
|
||||
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@ -2941,7 +2941,7 @@ static int dce_v11_0_sw_init(void *handle)
|
||||
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@ -2695,7 +2695,7 @@ static int dce_v6_0_sw_init(void *handle)
|
||||
adev->ddev->mode_config.prefer_shadow = 1;
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@ -2726,7 +2726,7 @@ static int dce_v8_0_sw_init(void *handle)
|
||||
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@ -408,7 +408,7 @@ static int dce_virtual_sw_init(void *handle)
|
||||
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@ -1317,7 +1317,7 @@ static int amdgpu_dm_mode_config_init(struct amdgpu_device *adev)
|
||||
|
||||
adev->ddev->mode_config.fb_base = adev->gmc.aper_base;
|
||||
|
||||
r = amdgpu_modeset_create_props(adev);
|
||||
r = amdgpu_display_modeset_create_props(adev);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user