* [PATCH] net: emaclite: Fix typo in error message
@ 2013-05-31 10:30 Jens Renner (EFE)
2013-05-31 10:36 ` Michal Simek
0 siblings, 1 reply; 4+ messages in thread
From: Jens Renner (EFE) @ 2013-05-31 10:30 UTC (permalink / raw)
To: netdev; +Cc: Michal Simek
s/allocal/allocate/
Signed-off-by: Jens Renner <renner@efe-gmbh.de>
---
drivers/net/ethernet/xilinx/xilinx_emaclite.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
index aa14d8a..aaadf7e 100644
--- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c
+++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
@@ -877,7 +877,7 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev)
bus = mdiobus_alloc();
if (!bus) {
- dev_err(dev, "Failed to allocal mdiobus\n");
+ dev_err(dev, "Failed to allocate mdiobus\n");
return -ENOMEM;
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] net: emaclite: Fix typo in error message
2013-05-31 10:30 [PATCH] net: emaclite: Fix typo in error message Jens Renner (EFE)
@ 2013-05-31 10:36 ` Michal Simek
2013-05-31 23:36 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Michal Simek @ 2013-05-31 10:36 UTC (permalink / raw)
To: Jens Renner (EFE); +Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 1210 bytes --]
On 05/31/2013 12:30 PM, Jens Renner (EFE) wrote:
> s/allocal/allocate/
>
> Signed-off-by: Jens Renner <renner@efe-gmbh.de>
> ---
> drivers/net/ethernet/xilinx/xilinx_emaclite.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
> index aa14d8a..aaadf7e 100644
> --- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c
> +++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
> @@ -877,7 +877,7 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev)
>
> bus = mdiobus_alloc();
> if (!bus) {
> - dev_err(dev, "Failed to allocal mdiobus\n");
> + dev_err(dev, "Failed to allocate mdiobus\n");
> return -ENOMEM;
> }
Acked-by: Michal Simek <monstr@monstr.eu>
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] net: emaclite: Fix typo in error message
2013-05-31 10:36 ` Michal Simek
@ 2013-05-31 23:36 ` David Miller
2013-06-03 7:53 ` Michal Simek
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2013-05-31 23:36 UTC (permalink / raw)
To: monstr; +Cc: renner, netdev
From: Michal Simek <monstr@monstr.eu>
Date: Fri, 31 May 2013 12:36:34 +0200
> On 05/31/2013 12:30 PM, Jens Renner (EFE) wrote:
>> s/allocal/allocate/
>>
>> Signed-off-by: Jens Renner <renner@efe-gmbh.de>
>> ---
>> drivers/net/ethernet/xilinx/xilinx_emaclite.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>> index aa14d8a..aaadf7e 100644
>> --- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>> +++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>> @@ -877,7 +877,7 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev)
>>
>> bus = mdiobus_alloc();
>> if (!bus) {
>> - dev_err(dev, "Failed to allocal mdiobus\n");
>> + dev_err(dev, "Failed to allocate mdiobus\n");
>> return -ENOMEM;
>> }
>
> Acked-by: Michal Simek <monstr@monstr.eu>
You're acking a patch that is corrupted by the submitter's email client
and won't even apply :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] net: emaclite: Fix typo in error message
2013-05-31 23:36 ` David Miller
@ 2013-06-03 7:53 ` Michal Simek
0 siblings, 0 replies; 4+ messages in thread
From: Michal Simek @ 2013-06-03 7:53 UTC (permalink / raw)
To: David Miller; +Cc: renner, netdev
[-- Attachment #1: Type: text/plain, Size: 1879 bytes --]
On 06/01/2013 01:36 AM, David Miller wrote:
> From: Michal Simek <monstr@monstr.eu>
> Date: Fri, 31 May 2013 12:36:34 +0200
>
>> On 05/31/2013 12:30 PM, Jens Renner (EFE) wrote:
>>> s/allocal/allocate/
>>>
>>> Signed-off-by: Jens Renner <renner@efe-gmbh.de>
>>> ---
>>> drivers/net/ethernet/xilinx/xilinx_emaclite.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/net/ethernet/xilinx/xilinx_emaclite.c b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>>> index aa14d8a..aaadf7e 100644
>>> --- a/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>>> +++ b/drivers/net/ethernet/xilinx/xilinx_emaclite.c
>>> @@ -877,7 +877,7 @@ static int xemaclite_mdio_setup(struct net_local *lp, struct device *dev)
>>>
>>> bus = mdiobus_alloc();
>>> if (!bus) {
>>> - dev_err(dev, "Failed to allocal mdiobus\n");
>>> + dev_err(dev, "Failed to allocate mdiobus\n");
>>> return -ENOMEM;
>>> }
>>
>> Acked-by: Michal Simek <monstr@monstr.eu>
>
> You're acking a patch that is corrupted by the submitter's email client
> and won't even apply :-)
:-) He has sent another email regarding to phy handling and
I have applied it, resolved conflicts on the top of my emaclite changes
and I thought that it was caused by my changes not because of corrupted
patch. That's why I have also tested it.
For this particular case, I didn't try to apply it just wanted to let you
know that I agree with this change because it fixes my typo.
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-06-03 7:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-31 10:30 [PATCH] net: emaclite: Fix typo in error message Jens Renner (EFE)
2013-05-31 10:36 ` Michal Simek
2013-05-31 23:36 ` David Miller
2013-06-03 7:53 ` Michal Simek
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).