Skip to content

Commit

Permalink
drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks
Browse files Browse the repository at this point in the history
Fix trivial spelling mistake cant't -> can't and add KERN_WARNING to
printk messages.  Remove redundant spaces before \n too (thanks to
Joe Perches for spotting those).

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Colin Ian King authored and Alex Deucher committed Oct 25, 2016
1 parent aafcafa commit fad742f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2125,7 +2125,7 @@ uint32_t fiji_get_offsetof(uint32_t type, uint32_t member)
return offsetof(SMU73_Discrete_DpmTable, LowSclkInterruptThreshold);
}
}
printk("cant't get the offset of type %x member %x \n", type, member);
printk(KERN_WARNING "can't get the offset of type %x member %x\n", type, member);
return 0;
}

Expand All @@ -2150,7 +2150,7 @@ uint32_t fiji_get_mac_definition(uint32_t value)
return SMU73_MAX_LEVELS_MVDD;
}

printk("cant't get the mac of %x \n", value);
printk(KERN_WARNING "can't get the mac of %x\n", value);
return 0;
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2140,7 +2140,7 @@ uint32_t iceland_get_offsetof(uint32_t type, uint32_t member)
return offsetof(SMU71_Discrete_DpmTable, LowSclkInterruptThreshold);
}
}
printk("cant't get the offset of type %x member %x \n", type, member);
printk(KERN_WARNING "can't get the offset of type %x member %x\n", type, member);
return 0;
}

Expand All @@ -2163,7 +2163,7 @@ uint32_t iceland_get_mac_definition(uint32_t value)
return SMU71_MAX_LEVELS_MVDD;
}

printk("cant't get the mac of %x \n", value);
printk(KERN_WARNING "can't get the mac of %x\n", value);
return 0;
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,7 @@ uint32_t polaris10_get_offsetof(uint32_t type, uint32_t member)
return offsetof(SMU74_Discrete_DpmTable, LowSclkInterruptThreshold);
}
}
printk("cant't get the offset of type %x member %x \n", type, member);
printk(KERN_WARNING "can't get the offset of type %x member %x\n", type, member);
return 0;
}

Expand All @@ -2201,7 +2201,7 @@ uint32_t polaris10_get_mac_definition(uint32_t value)
return SMU7_UVD_MCLK_HANDSHAKE_DISABLE;
}

printk("cant't get the mac of %x \n", value);
printk(KERN_WARNING "can't get the mac of %x\n", value);
return 0;
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2651,7 +2651,7 @@ uint32_t tonga_get_offsetof(uint32_t type, uint32_t member)
return offsetof(SMU72_Discrete_DpmTable, LowSclkInterruptThreshold);
}
}
printk("cant't get the offset of type %x member %x\n", type, member);
printk(KERN_WARNING "can't get the offset of type %x member %x\n", type, member);
return 0;
}

Expand All @@ -2675,7 +2675,7 @@ uint32_t tonga_get_mac_definition(uint32_t value)
case SMU_MAX_LEVELS_MVDD:
return SMU72_MAX_LEVELS_MVDD;
}
printk("cant't get the mac value %x\n", value);
printk(KERN_WARNING "can't get the mac value %x\n", value);

return 0;
}
Expand Down

0 comments on commit fad742f

Please sign in to comment.