[PATCH 5/9] drivers/video: typo fix of faild to failed

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Joe Perches
Date: Thursday, October 21, 2010 - 10:17 pm

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/video/bf54x-lq043fb.c    |    6 +++---
 drivers/video/bfin-t350mcqb-fb.c |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c
index b020ba7..e7d0f52 100644
--- a/drivers/video/bf54x-lq043fb.c
+++ b/drivers/video/bf54x-lq043fb.c
@@ -241,12 +241,12 @@ static int request_ports(struct bfin_bf54xfb_info *fbi)
 	u16 disp = fbi->mach_info->disp;
 
 	if (gpio_request(disp, DRIVER_NAME)) {
-		printk(KERN_ERR "Requesting GPIO %d faild\n", disp);
+		printk(KERN_ERR "Requesting GPIO %d failed\n", disp);
 		return -EFAULT;
 	}
 
 	if (peripheral_request_list(eppi_req_18, DRIVER_NAME)) {
-		printk(KERN_ERR "Requesting Peripherals faild\n");
+		printk(KERN_ERR "Requesting Peripherals failed\n");
 		gpio_free(disp);
 		return -EFAULT;
 	}
@@ -256,7 +256,7 @@ static int request_ports(struct bfin_bf54xfb_info *fbi)
 		u16 eppi_req_24[] = EPPI0_24;
 
 		if (peripheral_request_list(eppi_req_24, DRIVER_NAME)) {
-			printk(KERN_ERR "Requesting Peripherals faild\n");
+			printk(KERN_ERR "Requesting Peripherals failed\n");
 			peripheral_free_list(eppi_req_18);
 			gpio_free(disp);
 			return -EFAULT;
diff --git a/drivers/video/bfin-t350mcqb-fb.c b/drivers/video/bfin-t350mcqb-fb.c
index 7a50272..3cf7767 100644
--- a/drivers/video/bfin-t350mcqb-fb.c
+++ b/drivers/video/bfin-t350mcqb-fb.c
@@ -192,7 +192,7 @@ static int bfin_t350mcqb_request_ports(int action)
 {
 	if (action) {
 		if (peripheral_request_list(ppi0_req_8, DRIVER_NAME)) {
-			printk(KERN_ERR "Requesting Peripherals faild\n");
+			printk(KERN_ERR "Requesting Peripherals failed\n");
 			return -EFAULT;
 		}
 	} else
-- 
1.7.3.1.g432b3.dirty

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/9] Typo fixes of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 1/9] drivers/ata: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 3/9] drivers/net: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 4/9] drivers/rtc: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 5/9] drivers/video: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 6/9] fs/exofs: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
[PATCH 7/9] fs/jfs: typo fix of faild to failed, Joe Perches, (Thu Oct 21, 10:17 pm)
Re: [PATCH 4/9] drivers/rtc: typo fix of faild to failed, Wan ZongShun, (Thu Oct 21, 10:21 pm)
Re: [PATCH 0/9] Typo fixes of faild to failed, Mike Frysinger, (Fri Oct 22, 1:15 pm)
Re: [PATCH 6/9] fs/exofs: typo fix of faild to failed, Boaz Harrosh, (Sun Oct 24, 3:09 am)