All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] coresight: core: Fix typo in coresight-core.c
@ 2021-03-23  8:11 ` Qi Liu
  0 siblings, 0 replies; 6+ messages in thread
From: Qi Liu @ 2021-03-23  8:11 UTC (permalink / raw)
  To: mathieu.poirier, suzuki.poulose, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

Fix the following checkpatch warning:
WARNING: 'compoment' may be misspelled - perhaps '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(-)

diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
index 0062c89..b57bea1 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 components */
 	trace_id = source_ops(csdev)->trace_id(csdev);
 	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);
 
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2] coresight: core: Fix typo in coresight-core.c
@ 2021-03-23  8:11 ` Qi Liu
  0 siblings, 0 replies; 6+ messages in thread
From: Qi Liu @ 2021-03-23  8:11 UTC (permalink / raw)
  To: mathieu.poirier, suzuki.poulose, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

Fix the following checkpatch warning:
WARNING: 'compoment' may be misspelled - perhaps '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(-)

diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
index 0062c89..b57bea1 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 components */
 	trace_id = source_ops(csdev)->trace_id(csdev);
 	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);
 
-- 
2.8.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] coresight: core: Fix typo in coresight-core.c
  2021-03-23  8:11 ` Qi Liu
@ 2021-03-23 10:11   ` Suzuki K Poulose
  -1 siblings, 0 replies; 6+ messages in thread
From: Suzuki K Poulose @ 2021-03-23 10:11 UTC (permalink / raw)
  To: Qi Liu, mathieu.poirier, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

On 23/03/2021 08:11, Qi Liu wrote:
> Fix the following checkpatch warning:
> WARNING: 'compoment' may be misspelled - perhaps 'component'?
> 
> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")

I will queue this one, dropping the above Fixes tag. In general, you 
don't need Fixes tag for anything that doesn't really fix functional
bug.

Suzuki

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] coresight: core: Fix typo in coresight-core.c
@ 2021-03-23 10:11   ` Suzuki K Poulose
  0 siblings, 0 replies; 6+ messages in thread
From: Suzuki K Poulose @ 2021-03-23 10:11 UTC (permalink / raw)
  To: Qi Liu, mathieu.poirier, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

On 23/03/2021 08:11, Qi Liu wrote:
> Fix the following checkpatch warning:
> WARNING: 'compoment' may be misspelled - perhaps 'component'?
> 
> Fixes: 8e264c52e1da  ("coresight: core: Allow the coresight core driver to be built as a module")

I will queue this one, dropping the above Fixes tag. In general, you 
don't need Fixes tag for anything that doesn't really fix functional
bug.

Suzuki

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] coresight: core: Fix typo in coresight-core.c
  2021-03-23  8:11 ` Qi Liu
@ 2021-03-28 15:49   ` Suzuki K Poulose
  -1 siblings, 0 replies; 6+ messages in thread
From: Suzuki K Poulose @ 2021-03-28 15:49 UTC (permalink / raw)
  To: Qi Liu, mathieu.poirier, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

On 23/03/2021 08:11, Qi Liu wrote:
> Fix the following checkpatch warning:
> WARNING: 'compoment' may be misspelled - perhaps '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(-)
> 
> diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
> index 0062c89..b57bea1 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 components */
>   	trace_id = source_ops(csdev)->trace_id(csdev);
>   	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);

Applied.

Thanks
Suzuki


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2] coresight: core: Fix typo in coresight-core.c
@ 2021-03-28 15:49   ` Suzuki K Poulose
  0 siblings, 0 replies; 6+ messages in thread
From: Suzuki K Poulose @ 2021-03-28 15:49 UTC (permalink / raw)
  To: Qi Liu, mathieu.poirier, mike.leach
  Cc: coresight, linux-kernel, linux-arm-kernel, linuxarm

On 23/03/2021 08:11, Qi Liu wrote:
> Fix the following checkpatch warning:
> WARNING: 'compoment' may be misspelled - perhaps '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(-)
> 
> diff --git a/drivers/hwtracing/coresight/coresight-core.c b/drivers/hwtracing/coresight/coresight-core.c
> index 0062c89..b57bea1 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 components */
>   	trace_id = source_ops(csdev)->trace_id(csdev);
>   	i_trace_id = source_ops(i_csdev)->trace_id(i_csdev);

Applied.

Thanks
Suzuki


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-03-29 16:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-23  8:11 [PATCH v2] coresight: core: Fix typo in coresight-core.c Qi Liu
2021-03-23  8:11 ` Qi Liu
2021-03-23 10:11 ` Suzuki K Poulose
2021-03-23 10:11   ` Suzuki K Poulose
2021-03-28 15:49 ` Suzuki K Poulose
2021-03-28 15:49   ` Suzuki K Poulose

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.