diff mbox series

coresight: core: Fix typo in coresight-core.c

Message ID 1616418670-45882-1-git-send-email-liuqi115@huawei.com (mailing list archive)
State New, archived
Headers show
Series coresight: core: Fix typo in coresight-core.c | expand

Commit Message

liuqi (BA) March 22, 2021, 1:11 p.m. UTC
Fix up one typo: compoment->component.

Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")
Signed-off-by: Qi Liu <liuqi115@huawei.com>
---
 drivers/hwtracing/coresight/coresight-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.8.1

Comments

Suzuki K Poulose March 22, 2021, 2:38 p.m. UTC | #1
On 22/03/2021 13:11, Qi Liu wrote:
> Fix up one typo: compoment->component.
> 
> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")
> Signed-off-by: Qi Liu <liuqi115@huawei.com>

Thanks for the patch. I will queue this.
Randy Dunlap March 22, 2021, 4:55 p.m. UTC | #2
On 3/22/21 7:38 AM, Suzuki K Poulose wrote:
> On 22/03/2021 13:11, Qi Liu wrote:
>> Fix up one typo: compoment->component.
>>
>> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")
>> Signed-off-by: Qi Liu <liuqi115@huawei.com>
> 
> Thanks for the patch. I will queue this.

should be "both components"
liuqi (BA) March 23, 2021, 3:51 a.m. UTC | #3
On 2021/3/23 0:55, Randy Dunlap wrote:
> On 3/22/21 7:38 AM, Suzuki K Poulose wrote:
>> On 22/03/2021 13:11, Qi Liu wrote:
>>> Fix up one typo: compoment->component.
>>>
>>> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")
>>> Signed-off-by: Qi Liu <liuqi115@huawei.com>
>>
>> Thanks for the patch. I will queue this.
> 
> should be "both components"
> 
Thanks,will fix it next version.

Qi
liuqi (BA) March 23, 2021, 3:57 a.m. UTC | #4
On 2021/3/22 22:38, Suzuki K Poulose wrote:
> On 22/03/2021 13:11, Qi Liu wrote:
>> Fix up one typo: compoment->component.
>>
>> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core 
>> driver to be built as a module")
>> Signed-off-by: Qi Liu <liuqi115@huawei.com>
> 
> Thanks for the patch. I will queue this.
> 
> .
Hi Suzuki,

Randy pointed out it should be "components" here, so I'll send a v2 with 
this fixed.
Thanks,
Qi
diff mbox series

Patch

diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
index 0062c89..bc397a7 100644
--- a/drivers/hwtracing/coresight/coresight-core.c
+++ b/drivers/hwtracing/coresight/coresight-core.c
@@ -86,7 +86,7 @@  static int coresight_id_match(struct device *dev, void *data)
 	    i_csdev->type != CORESIGHT_DEV_TYPE_SOURCE)
 		return 0;

-	/* Get the source ID for both compoment */
+	/* Get the source ID for both component */
 	trace_id = source_ops(csdev)->trace_id(csdev);
 	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);