[PATCH] m68k: bitops: Fix typo in comment

Thorsten Blum posted 1 patch 1 year, 9 months ago
arch/m68k/include/asm/bitops.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] m68k: bitops: Fix typo in comment
Posted by Thorsten Blum 1 year, 9 months ago
s/Coldfire/ColdFire/

Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
---
 arch/m68k/include/asm/bitops.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/m68k/include/asm/bitops.h b/arch/m68k/include/asm/bitops.h
index 14c64a6f1217..621533b3858e 100644
--- a/arch/m68k/include/asm/bitops.h
+++ b/arch/m68k/include/asm/bitops.h
@@ -482,7 +482,7 @@ static inline unsigned long ffz(unsigned long word)
 
 /*
  *	The newer ColdFire family members support a "bitrev" instruction
- *	and we can use that to implement a fast ffs. Older Coldfire parts,
+ *	and we can use that to implement a fast ffs. Older ColdFire parts,
  *	and normal 68000 parts don't have anything special, so we use the
  *	generic functions for those.
  */
-- 
2.44.0
Re: [PATCH] m68k: bitops: Fix typo in comment
Posted by Matthew Wilcox 1 year, 9 months ago
On Tue, Apr 16, 2024 at 02:21:56PM +0200, Thorsten Blum wrote:
> s/Coldfire/ColdFire/

do you have nothing better to do?

Also, there are 37 lines with the word "Coldfire" in them, many visible
to the user.  Why change just this one?
Re: [PATCH] m68k: bitops: Fix typo in comment
Posted by Thorsten Blum 1 year, 9 months ago
On 16. Apr 2024, at 14:42, Matthew Wilcox <willy@infradead.org> wrote:
> 
> On Tue, Apr 16, 2024 at 02:21:56PM +0200, Thorsten Blum wrote:
>> s/Coldfire/ColdFire/
> 
> do you have nothing better to do?
> 
> Also, there are 37 lines with the word "Coldfire" in them, many visible
> to the user.  Why change just this one?

I only noticed the different spellings within the same comment while working on 
something else. I neither checked the rest of the file nor any other files.

Feel free to ignore it.