drm/amdgpu: fix spelling mistake "jumpimng" -> "jumping"
authorColin Ian King <colin.king@canonical.com>
Thu, 29 Aug 2019 00:51:56 +0000 (01:51 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 29 Aug 2019 20:52:32 +0000 (15:52 -0500)
There is a spelling mistake in a DRM_DEBUG_DRIVER debug message.
Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c

index 86110e6..8a32b5c 100644 (file)
@@ -257,7 +257,7 @@ static uint32_t __correct_eeprom_dest_address(uint32_t curr_address)
         * https://www.st.com/resource/en/datasheet/m24m02-dr.pdf sec. 5.1.2
         */
        if ((curr_address & EEPROM_ADDR_MSB_MASK) != (next_address & EEPROM_ADDR_MSB_MASK)) {
-               DRM_DEBUG_DRIVER("Reached end of EEPROM memory page, jumpimng to next: %lx",
+               DRM_DEBUG_DRIVER("Reached end of EEPROM memory page, jumping to next: %lx",
                                (next_address & EEPROM_ADDR_MSB_MASK));
 
                return  (next_address & EEPROM_ADDR_MSB_MASK);