netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] nfc: fix typo
@ 2021-01-23  5:26 samirweng1979
  2021-01-24 17:38 ` Mark Greer
  0 siblings, 1 reply; 4+ messages in thread
From: samirweng1979 @ 2021-01-23  5:26 UTC (permalink / raw)
  To: mgreer; +Cc: linux-wireless, linux-nfc, netdev, linux-kernel, wengjianfeng

From: wengjianfeng <wengjianfeng@yulong.com>

change 'regster' to 'register'

Signed-off-by: wengjianfeng <wengjianfeng@yulong.com>
---
 drivers/nfc/trf7970a.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index c70f62fe..3397802 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -169,7 +169,7 @@
 
 /* Bits determining whether its a direct command or register R/W,
  * whether to use a continuous SPI transaction or not, and the actual
- * direct cmd opcode or regster address.
+ * direct cmd opcode or register address.
  */
 #define TRF7970A_CMD_BIT_CTRL			BIT(7)
 #define TRF7970A_CMD_BIT_RW			BIT(6)
-- 
1.9.1


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

* Re: [PATCH] nfc: fix typo
  2021-01-23  5:26 [PATCH] nfc: fix typo samirweng1979
@ 2021-01-24 17:38 ` Mark Greer
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Greer @ 2021-01-24 17:38 UTC (permalink / raw)
  To: samirweng1979
  Cc: mgreer, linux-wireless, linux-nfc, netdev, linux-kernel, wengjianfeng

On Sat, Jan 23, 2021 at 01:26:18PM +0800, samirweng1979 wrote:
> From: wengjianfeng <wengjianfeng@yulong.com>
> 
> change 'regster' to 'register'
> 
> Signed-off-by: wengjianfeng <wengjianfeng@yulong.com>
> ---
>  drivers/nfc/trf7970a.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
> index c70f62fe..3397802 100644
> --- a/drivers/nfc/trf7970a.c
> +++ b/drivers/nfc/trf7970a.c
> @@ -169,7 +169,7 @@
>  
>  /* Bits determining whether its a direct command or register R/W,
>   * whether to use a continuous SPI transaction or not, and the actual
> - * direct cmd opcode or regster address.
> + * direct cmd opcode or register address.
>   */
>  #define TRF7970A_CMD_BIT_CTRL			BIT(7)
>  #define TRF7970A_CMD_BIT_RW			BIT(6)

Acked-by: Mark Greer <mgreer@animalcreek.com>

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

* Re: [PATCH] nfc: fix typo
  2021-01-23  8:25 samirweng1979
@ 2021-01-26  3:40 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-01-26  3:40 UTC (permalink / raw)
  To: samirweng1979
  Cc: mgreer, linux-nfc, linux-wireless, netdev, linux-kernel, wengjianfeng

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Sat, 23 Jan 2021 16:25:50 +0800 you wrote:
> From: wengjianfeng <wengjianfeng@yulong.com>
> 
> change 'regster' to 'register'
> 
> Signed-off-by: wengjianfeng <wengjianfeng@yulong.com>
> ---
>  drivers/nfc/trf7970a.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - nfc: fix typo
    https://git.kernel.org/netdev/net-next/c/02c26940908f

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* [PATCH] nfc: fix typo
@ 2021-01-23  8:25 samirweng1979
  2021-01-26  3:40 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 4+ messages in thread
From: samirweng1979 @ 2021-01-23  8:25 UTC (permalink / raw)
  To: mgreer, linux-nfc; +Cc: linux-wireless, netdev, linux-kernel, wengjianfeng

From: wengjianfeng <wengjianfeng@yulong.com>

change 'regster' to 'register'

Signed-off-by: wengjianfeng <wengjianfeng@yulong.com>
---
 drivers/nfc/trf7970a.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c
index c70f62fe..3397802 100644
--- a/drivers/nfc/trf7970a.c
+++ b/drivers/nfc/trf7970a.c
@@ -169,7 +169,7 @@
 
 /* Bits determining whether its a direct command or register R/W,
  * whether to use a continuous SPI transaction or not, and the actual
- * direct cmd opcode or regster address.
+ * direct cmd opcode or register address.
  */
 #define TRF7970A_CMD_BIT_CTRL			BIT(7)
 #define TRF7970A_CMD_BIT_RW			BIT(6)
-- 
1.9.1


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

end of thread, other threads:[~2021-01-26 19:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-23  5:26 [PATCH] nfc: fix typo samirweng1979
2021-01-24 17:38 ` Mark Greer
2021-01-23  8:25 samirweng1979
2021-01-26  3:40 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).