* [PATCH] Input: sentelic: fix comment typo
@ 2026-03-16 18:12 Joseph Salisbury
2026-03-16 23:48 ` [External] : " Joseph Salisbury
0 siblings, 1 reply; 4+ messages in thread
From: Joseph Salisbury @ 2026-03-16 18:12 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, linux-kernel
The file contains a spelling error in a source comment (formating).
Typos in comments reduce readability and make text searches less reliable
for developers and maintainers.
Replace 'formating' with 'formatting' in the affected comment. This is a
comment-only cleanup and does not change behavior.
Fixes: fc69f4a6af49 ("Input: add new driver for Sentelic Finger Sensing Pad")
Cc: stable@vger.kernel.org
Signed-off-by: Joseph Salisbury <joseph.salisbury@oracle.com>
---
drivers/input/mouse/sentelic.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/mouse/sentelic.h b/drivers/input/mouse/sentelic.h
index 02cac0e7ad63..9ba3631e3d0f 100644
--- a/drivers/input/mouse/sentelic.h
+++ b/drivers/input/mouse/sentelic.h
@@ -60,7 +60,7 @@
#define FSP_REG_SN1 (0x41)
#define FSP_REG_SN2 (0x42)
-/* Finger-sensing Pad packet formating related definitions */
+/* Finger-sensing Pad packet formatting related definitions */
/* absolute packet type */
#define FSP_PKT_TYPE_NORMAL (0x00)
--
2.47.3
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [External] : [PATCH] Input: sentelic: fix comment typo
2026-03-16 18:12 [PATCH] Input: sentelic: fix comment typo Joseph Salisbury
@ 2026-03-16 23:48 ` Joseph Salisbury
2026-03-18 5:43 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Joseph Salisbury @ 2026-03-16 23:48 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, linux-kernel
On 3/16/26 2:12 PM, Joseph Salisbury wrote:
> The file contains a spelling error in a source comment (formating).
>
> Typos in comments reduce readability and make text searches less reliable
> for developers and maintainers.
>
> Replace 'formating' with 'formatting' in the affected comment. This is a
> comment-only cleanup and does not change behavior.
>
> Fixes: fc69f4a6af49 ("Input: add new driver for Sentelic Finger Sensing Pad")
> Cc: stable@vger.kernel.org
> Signed-off-by: Joseph Salisbury <joseph.salisbury@oracle.com>
> ---
> drivers/input/mouse/sentelic.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/mouse/sentelic.h b/drivers/input/mouse/sentelic.h
> index 02cac0e7ad63..9ba3631e3d0f 100644
> --- a/drivers/input/mouse/sentelic.h
> +++ b/drivers/input/mouse/sentelic.h
> @@ -60,7 +60,7 @@
> #define FSP_REG_SN1 (0x41)
> #define FSP_REG_SN2 (0x42)
>
> -/* Finger-sensing Pad packet formating related definitions */
> +/* Finger-sensing Pad packet formatting related definitions */
>
> /* absolute packet type */
> #define FSP_PKT_TYPE_NORMAL (0x00)
I inadvertently added Fixes: and Cc: stable tags. If possible, please
remove them as they are not appropriate for fixes to misspellings in
code comments. If it's not possible to remove them, I can send a v2.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [External] : [PATCH] Input: sentelic: fix comment typo
2026-03-16 23:48 ` [External] : " Joseph Salisbury
@ 2026-03-18 5:43 ` Dmitry Torokhov
2026-03-18 16:34 ` Joseph Salisbury
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2026-03-18 5:43 UTC (permalink / raw)
To: Joseph Salisbury; +Cc: linux-input, linux-kernel
Hi Joseph,
On Mon, Mar 16, 2026 at 07:48:31PM -0400, Joseph Salisbury wrote:
>
>
> On 3/16/26 2:12 PM, Joseph Salisbury wrote:
> > The file contains a spelling error in a source comment (formating).
> >
> > Typos in comments reduce readability and make text searches less reliable
> > for developers and maintainers.
> >
> > Replace 'formating' with 'formatting' in the affected comment. This is a
> > comment-only cleanup and does not change behavior.
> >
> > Fixes: fc69f4a6af49 ("Input: add new driver for Sentelic Finger Sensing Pad")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Joseph Salisbury <joseph.salisbury@oracle.com>
> > ---
> > drivers/input/mouse/sentelic.h | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/input/mouse/sentelic.h b/drivers/input/mouse/sentelic.h
> > index 02cac0e7ad63..9ba3631e3d0f 100644
> > --- a/drivers/input/mouse/sentelic.h
> > +++ b/drivers/input/mouse/sentelic.h
> > @@ -60,7 +60,7 @@
> > #define FSP_REG_SN1 (0x41)
> > #define FSP_REG_SN2 (0x42)
> > -/* Finger-sensing Pad packet formating related definitions */
> > +/* Finger-sensing Pad packet formatting related definitions */
> > /* absolute packet type */
> > #define FSP_PKT_TYPE_NORMAL (0x00)
> I inadvertently added Fixes: and Cc: stable tags. If possible, please
> remove them as they are not appropriate for fixes to misspellings in code
> comments. If it's not possible to remove them, I can send a v2.
>
Sorry I did not receive the original patch but even with the typo fixed
this comment needs more work to improve readability.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] Input: sentelic: fix comment typo
2026-03-18 5:43 ` Dmitry Torokhov
@ 2026-03-18 16:34 ` Joseph Salisbury
0 siblings, 0 replies; 4+ messages in thread
From: Joseph Salisbury @ 2026-03-18 16:34 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, linux-kernel
On 3/18/26 1:43 AM, Dmitry Torokhov wrote:
> Hi Joseph,
>
> On Mon, Mar 16, 2026 at 07:48:31PM -0400, Joseph Salisbury wrote:
>>
>> On 3/16/26 2:12 PM, Joseph Salisbury wrote:
>>> The file contains a spelling error in a source comment (formating).
>>>
>>> Typos in comments reduce readability and make text searches less reliable
>>> for developers and maintainers.
>>>
>>> Replace 'formating' with 'formatting' in the affected comment. This is a
>>> comment-only cleanup and does not change behavior.
>>>
>>> Fixes: fc69f4a6af49 ("Input: add new driver for Sentelic Finger Sensing Pad")
>>> Cc: stable@vger.kernel.org
>>> Signed-off-by: Joseph Salisbury <joseph.salisbury@oracle.com>
>>> ---
>>> drivers/input/mouse/sentelic.h | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/input/mouse/sentelic.h b/drivers/input/mouse/sentelic.h
>>> index 02cac0e7ad63..9ba3631e3d0f 100644
>>> --- a/drivers/input/mouse/sentelic.h
>>> +++ b/drivers/input/mouse/sentelic.h
>>> @@ -60,7 +60,7 @@
>>> #define FSP_REG_SN1 (0x41)
>>> #define FSP_REG_SN2 (0x42)
>>> -/* Finger-sensing Pad packet formating related definitions */
>>> +/* Finger-sensing Pad packet formatting related definitions */
>>> /* absolute packet type */
>>> #define FSP_PKT_TYPE_NORMAL (0x00)
>> I inadvertently added Fixes: and Cc: stable tags. If possible, please
>> remove them as they are not appropriate for fixes to misspellings in code
>> comments. If it's not possible to remove them, I can send a v2.
>>
> Sorry I did not receive the original patch but even with the typo fixed
> this comment needs more work to improve readability.
>
> Thanks.
>
Thanks for the feedback, Dmitry!
Would you like just improved readability for that line, or would you
like me to add some additional info on the definitions?
How about something like this:
-/* Finger-sensing Pad packet formating related definitions */
+/* Finger Sensing Pad packet format definitions.
+ * Define packet types and bit fields used to decode device reports.
+ */
If that looks good, I'll send a v2.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-03-18 16:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16 18:12 [PATCH] Input: sentelic: fix comment typo Joseph Salisbury
2026-03-16 23:48 ` [External] : " Joseph Salisbury
2026-03-18 5:43 ` Dmitry Torokhov
2026-03-18 16:34 ` Joseph Salisbury
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox