aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-08-28 20:51:56 -0400
committerAlex Deucher <alexander.deucher@amd.com>2019-08-29 16:52:32 -0400
commit92ead9fa6fc554e0ce43a4a83b26fac71f9b96ba (patch)
treedfef160188150edfff285717dcdb931daec90b7d
parent53fd9b5ae87893540bbcd81a69ad809a13db5b89 (diff)
drm/amdgpu: fix spelling mistake "jumpimng" -> "jumping"
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>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
index 86110e6095cc..8a32b5c93778 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
@@ -257,7 +257,7 @@ static uint32_t __correct_eeprom_dest_address(uint32_t curr_address)
257 * https://www.st.com/resource/en/datasheet/m24m02-dr.pdf sec. 5.1.2 257 * https://www.st.com/resource/en/datasheet/m24m02-dr.pdf sec. 5.1.2
258 */ 258 */
259 if ((curr_address & EEPROM_ADDR_MSB_MASK) != (next_address & EEPROM_ADDR_MSB_MASK)) { 259 if ((curr_address & EEPROM_ADDR_MSB_MASK) != (next_address & EEPROM_ADDR_MSB_MASK)) {
260 DRM_DEBUG_DRIVER("Reached end of EEPROM memory page, jumpimng to next: %lx", 260 DRM_DEBUG_DRIVER("Reached end of EEPROM memory page, jumping to next: %lx",
261 (next_address & EEPROM_ADDR_MSB_MASK)); 261 (next_address & EEPROM_ADDR_MSB_MASK));
262 262
263 return (next_address & EEPROM_ADDR_MSB_MASK); 263 return (next_address & EEPROM_ADDR_MSB_MASK);