]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amd/display: Fixed comment styling
authorHaiyi Zhou <haiyi.zhou@amd.com>
Thu, 9 Jan 2020 16:08:33 +0000 (11:08 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 22 Jan 2020 21:55:27 +0000 (16:55 -0500)
Switched to C-style comments for consistency

Signed-off-by: Haiyi Zhou <haiyi.zhou@amd.com>
Reviewed-by: Reza Amini <Reza.Amini@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/modules/freesync/freesync.c

index 6e5ecefe7d9d5a7989b519f0ff950437feccce79..b9992ebf77a627c06ae4e7cde30ae6b00cb8152a 100644 (file)
@@ -381,7 +381,7 @@ static void apply_fixed_refresh(struct core_freesync *core_freesync,
        bool update = false;
        unsigned int max_render_time_in_us = in_out_vrr->max_duration_in_us;
 
-       //Compute the exit refresh rate and exit frame duration
+       /* Compute the exit refresh rate and exit frame duration */
        unsigned int exit_refresh_rate_in_milli_hz = ((1000000000/max_render_time_in_us)
                        + (1000*FIXED_REFRESH_EXIT_MARGIN_IN_HZ));
        unsigned int exit_frame_duration_in_us = 1000000000/exit_refresh_rate_in_milli_hz;