linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware
@ 2015-02-24  7:49 Yannick Guerrini
  2015-02-24  8:31 ` Hayes Wang
  2015-02-24 12:03 ` [PATCHv2] r8169: " Yannick Guerrini
  0 siblings, 2 replies; 5+ messages in thread
From: Yannick Guerrini @ 2015-02-24  7:49 UTC (permalink / raw)
  To: nic_swsd; +Cc: trivial, linux-kernel, Yannick Guerrini

Change 'firwmare' to 'firmware'

Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>
---
 drivers/net/ethernet/realtek/r8169.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
index b156092..c70ab40 100644
--- a/drivers/net/ethernet/realtek/r8169.c
+++ b/drivers/net/ethernet/realtek/r8169.c
@@ -2561,7 +2561,7 @@ static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
 	int rc = -EINVAL;
 
 	if (!rtl_fw_format_ok(tp, rtl_fw)) {
-		netif_err(tp, ifup, dev, "invalid firwmare\n");
+		netif_err(tp, ifup, dev, "invalid firmware\n");
 		goto out;
 	}
 
-- 
1.9.5.msysgit.0


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

* RE: [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware
  2015-02-24  7:49 [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware Yannick Guerrini
@ 2015-02-24  8:31 ` Hayes Wang
  2015-02-24 11:52   ` Yannick Guerrini
  2015-02-24 12:03 ` [PATCHv2] r8169: " Yannick Guerrini
  1 sibling, 1 reply; 5+ messages in thread
From: Hayes Wang @ 2015-02-24  8:31 UTC (permalink / raw)
  To: Yannick Guerrini, nic_swsd; +Cc: trivial, linux-kernel

 Yannick Guerrini [mailto:yguerrini@tomshardware.fr]
> Sent: Tuesday, February 24, 2015 3:49 PM
> To: nic_swsd
> Cc: trivial@kernel.org; linux-kernel@vger.kernel.org; Yannick Guerrini
> Subject: [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware
> 
> Change 'firwmare' to 'firmware'
> 
> Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>

I think you also have to send the mail to netdev@vger.kernel.org.

Besides, maybe you have to replace "drivers, realtek" of the subject with "r8169".

Best Regards,
Hayes


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

* Re: [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware
  2015-02-24  8:31 ` Hayes Wang
@ 2015-02-24 11:52   ` Yannick Guerrini
  0 siblings, 0 replies; 5+ messages in thread
From: Yannick Guerrini @ 2015-02-24 11:52 UTC (permalink / raw)
  To: Hayes Wang, nic_swsd; +Cc: trivial, linux-kernel

>   Yannick Guerrini [mailto:yguerrini@tomshardware.fr]
>> Sent: Tuesday, February 24, 2015 3:49 PM
>> To: nic_swsd
>> Cc: trivial@kernel.org; linux-kernel@vger.kernel.org; Yannick Guerrini
>> Subject: [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware
>>
>> Change 'firwmare' to 'firmware'
>>
>> Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>
> I think you also have to send the mail to netdev@vger.kernel.org.
>
> Besides, maybe you have to replace "drivers, realtek" of the subject with "r8169".
>
> Best Regards,
> Hayes
>
> .

Oops, sorry for my mistake.
Thank for your advise, I will (try) to do that !

Best,
Yannick Guerrini

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

* [PATCHv2] r8169: Fix trivial typo in rtl_check_firmware
  2015-02-24  7:49 [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware Yannick Guerrini
  2015-02-24  8:31 ` Hayes Wang
@ 2015-02-24 12:03 ` Yannick Guerrini
  2015-02-24 21:26   ` David Miller
  1 sibling, 1 reply; 5+ messages in thread
From: Yannick Guerrini @ 2015-02-24 12:03 UTC (permalink / raw)
  To: nic_swsd; +Cc: trivial, linux-kernel, netdev, hayeswang, Yannick Guerrini

Change 'firwmare' to 'firmware'

Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>
---
v2: replace "drivers, realtek" of the subject with "r8169" and cc netdev@vger.kernel.org,
    as suggested by Hayes Wang <hayeswang@realtek.com>

 drivers/net/ethernet/realtek/r8169.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
index b156092..c70ab40 100644
--- a/drivers/net/ethernet/realtek/r8169.c
+++ b/drivers/net/ethernet/realtek/r8169.c
@@ -2561,7 +2561,7 @@ static int rtl_check_firmware(struct rtl8169_private *tp, struct rtl_fw *rtl_fw)
 	int rc = -EINVAL;
 
 	if (!rtl_fw_format_ok(tp, rtl_fw)) {
-		netif_err(tp, ifup, dev, "invalid firwmare\n");
+		netif_err(tp, ifup, dev, "invalid firmware\n");
 		goto out;
 	}
 
-- 
1.9.5.msysgit.0


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

* Re: [PATCHv2] r8169: Fix trivial typo in rtl_check_firmware
  2015-02-24 12:03 ` [PATCHv2] r8169: " Yannick Guerrini
@ 2015-02-24 21:26   ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2015-02-24 21:26 UTC (permalink / raw)
  To: yguerrini; +Cc: nic_swsd, trivial, linux-kernel, netdev, hayeswang

From: Yannick Guerrini <yguerrini@tomshardware.fr>
Date: Tue, 24 Feb 2015 13:03:51 +0100

> Change 'firwmare' to 'firmware'
> 
> Signed-off-by: Yannick Guerrini <yguerrini@tomshardware.fr>
> ---
> v2: replace "drivers, realtek" of the subject with "r8169" and cc netdev@vger.kernel.org,
>     as suggested by Hayes Wang <hayeswang@realtek.com>

Applied.

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

end of thread, other threads:[~2015-02-24 21:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-24  7:49 [PATCH] drivers, realtek: Fix trivial typo in rtl_check_firmware Yannick Guerrini
2015-02-24  8:31 ` Hayes Wang
2015-02-24 11:52   ` Yannick Guerrini
2015-02-24 12:03 ` [PATCHv2] r8169: " Yannick Guerrini
2015-02-24 21:26   ` David Miller

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).