Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1507821 > unrolled thread

[PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks

Started byColin King <colin.king@canonical.com>
First post2016-10-25 01:20 +0200
Last post2016-10-25 17:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks Colin King <colin.king@canonical.com> - 2016-10-25 01:20 +0200
    Re: [PATCH][V2] drm/amd/powerplay: fix spelling mistake and add  KERN_WARNING to printks Alex Deucher <alexdeucher@gmail.com> - 2016-10-25 17:30 +0200

#1507821 — [PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks

FromColin King <colin.king@canonical.com>
Date2016-10-25 01:20 +0200
Subject[PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks
Message-ID<svWH7-5Ra-1@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

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).

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c      | 4 ++--
 drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c   | 4 ++--
 drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c | 4 ++--
 drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c     | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c b/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
index 76310ac..62e99d7 100644
--- a/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
+++ b/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
@@ -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;
 }
 
@@ -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;
 }
 
diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c b/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
index 8c889ca..0cc20a8 100644
--- a/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
+++ b/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
@@ -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;
 }
 
@@ -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;
 }
 
diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c b/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
index 4ccc0b7..7236c51 100644
--- a/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
+++ b/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
@@ -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;
 }
 
@@ -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;
 }
 
diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c b/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
index de2a24d..d08f6f1 100644
--- a/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
+++ b/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
@@ -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;
 }
 
@@ -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;
 }
-- 
2.9.3

[toc] | [next] | [standalone]


#1508381 — Re: [PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks

FromAlex Deucher <alexdeucher@gmail.com>
Date2016-10-25 17:30 +0200
SubjectRe: [PATCH][V2] drm/amd/powerplay: fix spelling mistake and add KERN_WARNING to printks
Message-ID<swbPQ-7oR-19@gated-at.bofh.it>
In reply to#1507821
On Tue, Oct 25, 2016 at 3:43 AM, Christian König
<christian.koenig@amd.com> wrote:
> Am 25.10.2016 um 01:14 schrieb Colin King:
>>
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> 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).
>>
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>.
>

Applied.  Thanks!

Alex

>
>> ---
>>   drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c      | 4 ++--
>>   drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c   | 4 ++--
>>   drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c | 4 ++--
>>   drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c     | 4 ++--
>>   4 files changed, 8 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
>> b/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
>> index 76310ac..62e99d7 100644
>> --- a/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
>> +++ b/drivers/gpu/drm/amd/powerplay/smumgr/fiji_smc.c
>> @@ -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;
>>   }
>>   @@ -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;
>>   }
>>   diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
>> b/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
>> index 8c889ca..0cc20a8 100644
>> --- a/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
>> +++ b/drivers/gpu/drm/amd/powerplay/smumgr/iceland_smc.c
>> @@ -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;
>>   }
>>   @@ -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;
>>   }
>>   diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
>> b/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
>> index 4ccc0b7..7236c51 100644
>> --- a/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
>> +++ b/drivers/gpu/drm/amd/powerplay/smumgr/polaris10_smc.c
>> @@ -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;
>>   }
>>   @@ -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;
>>   }
>>   diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
>> b/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
>> index de2a24d..d08f6f1 100644
>> --- a/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
>> +++ b/drivers/gpu/drm/amd/powerplay/smumgr/tonga_smc.c
>> @@ -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;
>>   }
>>   @@ -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;
>>   }
>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web