linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] Typo fixes of faild to failed
@ 2010-10-22  5:17 Joe Perches
  2010-10-22  5:17 ` [PATCH 4/9] drivers/rtc: typo fix " Joe Perches
  2010-10-22 20:15 ` [PATCH 0/9] Typo fixes " Mike Frysinger
  0 siblings, 2 replies; 4+ messages in thread
From: Joe Perches @ 2010-10-22  5:17 UTC (permalink / raw)
  To: linux-arm-kernel

Joe Perches (9):
  drivers/ata: typo fix of faild to failed
  drivers/gpu: typo fix of faild to failed
  drivers/net: typo fix of faild to failed
  drivers/rtc: typo fix of faild to failed
  drivers/video: typo fix of faild to failed
  fs/exofs: typo fix of faild to failed
  fs/jfs: typo fix of faild to failed
  kernel/trace: typo fix of faild to failed
  net/wanrouter: typo fix of faild to failed

 drivers/ata/pata_bf54x.c           |    2 +-
 drivers/gpu/drm/radeon/radeon_cs.c |    2 +-
 drivers/net/ps3_gelic_net.c        |    4 ++--
 drivers/net/tulip/pnic2.c          |    2 +-
 drivers/rtc/rtc-nuc900.c           |    2 +-
 drivers/video/bf54x-lq043fb.c      |    6 +++---
 drivers/video/bfin-t350mcqb-fb.c   |    2 +-
 fs/exofs/dir.c                     |    4 ++--
 fs/exofs/inode.c                   |   14 +++++++-------
 fs/exofs/ios.c                     |   10 +++++-----
 fs/jfs/jfs_mount.c                 |    4 ++--
 kernel/trace/trace_kprobe.c        |    2 +-
 net/wanrouter/wanmain.c            |    4 ++--
 13 files changed, 29 insertions(+), 29 deletions(-)

-- 
1.7.3.1.g432b3.dirty

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

* [PATCH 4/9] drivers/rtc: typo fix of faild to failed
  2010-10-22  5:17 [PATCH 0/9] Typo fixes of faild to failed Joe Perches
@ 2010-10-22  5:17 ` Joe Perches
  2010-10-22  5:21   ` Wan ZongShun
  2010-10-22 20:15 ` [PATCH 0/9] Typo fixes " Mike Frysinger
  1 sibling, 1 reply; 4+ messages in thread
From: Joe Perches @ 2010-10-22  5:17 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/rtc/rtc-nuc900.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/rtc/rtc-nuc900.c b/drivers/rtc/rtc-nuc900.c
index 62de66a..ddb0857 100644
--- a/drivers/rtc/rtc-nuc900.c
+++ b/drivers/rtc/rtc-nuc900.c
@@ -274,7 +274,7 @@ static int __devinit nuc900_rtc_probe(struct platform_device *pdev)
 	nuc900_rtc->rtcdev = rtc_device_register(pdev->name, &pdev->dev,
 						&nuc900_rtc_ops, THIS_MODULE);
 	if (IS_ERR(nuc900_rtc->rtcdev)) {
-		dev_err(&pdev->dev, "rtc device register faild\n");
+		dev_err(&pdev->dev, "rtc device register failed\n");
 		err = PTR_ERR(nuc900_rtc->rtcdev);
 		goto fail3;
 	}
-- 
1.7.3.1.g432b3.dirty

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

* [PATCH 4/9] drivers/rtc: typo fix of faild to failed
  2010-10-22  5:17 ` [PATCH 4/9] drivers/rtc: typo fix " Joe Perches
@ 2010-10-22  5:21   ` Wan ZongShun
  0 siblings, 0 replies; 4+ messages in thread
From: Wan ZongShun @ 2010-10-22  5:21 UTC (permalink / raw)
  To: linux-arm-kernel

Hi, Joe,

Thanks for your help.

2010/10/22 Joe Perches <joe@perches.com>:
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> ?drivers/rtc/rtc-nuc900.c | ? ?2 +-
> ?1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/rtc/rtc-nuc900.c b/drivers/rtc/rtc-nuc900.c
> index 62de66a..ddb0857 100644
> --- a/drivers/rtc/rtc-nuc900.c
> +++ b/drivers/rtc/rtc-nuc900.c
> @@ -274,7 +274,7 @@ static int __devinit nuc900_rtc_probe(struct platform_device *pdev)
> ? ? ? ?nuc900_rtc->rtcdev = rtc_device_register(pdev->name, &pdev->dev,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?&nuc900_rtc_ops, THIS_MODULE);
> ? ? ? ?if (IS_ERR(nuc900_rtc->rtcdev)) {
> - ? ? ? ? ? ? ? dev_err(&pdev->dev, "rtc device register faild\n");
> + ? ? ? ? ? ? ? dev_err(&pdev->dev, "rtc device register failed\n");

Acked-by: Wan ZongShun <mcuos.com@gmail.com>

> ? ? ? ? ? ? ? ?err = PTR_ERR(nuc900_rtc->rtcdev);
> ? ? ? ? ? ? ? ?goto fail3;
> ? ? ? ?}
> --
> 1.7.3.1.g432b3.dirty
>
>



-- 
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel at lists.infradead.org
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900 at googlegroups.com
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com at gmail.com

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

* [PATCH 0/9] Typo fixes of faild to failed
  2010-10-22  5:17 [PATCH 0/9] Typo fixes of faild to failed Joe Perches
  2010-10-22  5:17 ` [PATCH 4/9] drivers/rtc: typo fix " Joe Perches
@ 2010-10-22 20:15 ` Mike Frysinger
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Frysinger @ 2010-10-22 20:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Oct 22, 2010 at 01:17, Joe Perches wrote:
> ?drivers/ata/pata_bf54x.c ? ? ? ? ? | ? ?2 +-
> ?drivers/video/bf54x-lq043fb.c ? ? ?| ? ?6 +++---
> ?drivers/video/bfin-t350mcqb-fb.c ? | ? ?2 +-

Acked-by: Mike Frysinger <vapier@gentoo.org>
-mike

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

end of thread, other threads:[~2010-10-22 20:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-22  5:17 [PATCH 0/9] Typo fixes of faild to failed Joe Perches
2010-10-22  5:17 ` [PATCH 4/9] drivers/rtc: typo fix " Joe Perches
2010-10-22  5:21   ` Wan ZongShun
2010-10-22 20:15 ` [PATCH 0/9] Typo fixes " Mike Frysinger

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