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

drm/amdgpu/virtual_dce: move define into source file

It's not used outside the file.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

+3 -1
+3
drivers/gpu/drm/amd/amdgpu/dce_virtual.c
··· 37 37 #include "dce_v11_0.h" 38 38 #include "dce_virtual.h" 39 39 40 + #define DCE_VIRTUAL_VBLANK_PERIOD 16666666 41 + 42 + 40 43 static void dce_virtual_set_display_funcs(struct amdgpu_device *adev); 41 44 static void dce_virtual_set_irq_funcs(struct amdgpu_device *adev); 42 45 static int dce_virtual_connector_encoder_init(struct amdgpu_device *adev,
-1
drivers/gpu/drm/amd/amdgpu/dce_virtual.h
··· 25 25 #define __DCE_VIRTUAL_H__ 26 26 27 27 extern const struct amd_ip_funcs dce_virtual_ip_funcs; 28 - #define DCE_VIRTUAL_VBLANK_PERIOD 16666666 29 28 30 29 #endif 31 30