diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2010-08-07 06:30:03 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-08-09 05:25:17 -0400 |
commit | 426d31071ac476ea62c62656b242930c17b58c00 (patch) | |
tree | 9c68a1adc490e903c5a9cd192f54caa204bdc18d /drivers/video | |
parent | eef35c2d41ddcc653c20d26b977acaa45c811e1f (diff) |
fix printk typo 'faild'
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/bf54x-lq043fb.c | 6 | ||||
-rw-r--r-- | 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 b020ba7f1cf2..e7d0f525041e 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) | |||
241 | u16 disp = fbi->mach_info->disp; | 241 | u16 disp = fbi->mach_info->disp; |
242 | 242 | ||
243 | if (gpio_request(disp, DRIVER_NAME)) { | 243 | if (gpio_request(disp, DRIVER_NAME)) { |
244 | printk(KERN_ERR "Requesting GPIO %d faild\n", disp); | 244 | printk(KERN_ERR "Requesting GPIO %d failed\n", disp); |
245 | return -EFAULT; | 245 | return -EFAULT; |
246 | } | 246 | } |
247 | 247 | ||
248 | if (peripheral_request_list(eppi_req_18, DRIVER_NAME)) { | 248 | if (peripheral_request_list(eppi_req_18, DRIVER_NAME)) { |
249 | printk(KERN_ERR "Requesting Peripherals faild\n"); | 249 | printk(KERN_ERR "Requesting Peripherals failed\n"); |
250 | gpio_free(disp); | 250 | gpio_free(disp); |
251 | return -EFAULT; | 251 | return -EFAULT; |
252 | } | 252 | } |
@@ -256,7 +256,7 @@ static int request_ports(struct bfin_bf54xfb_info *fbi) | |||
256 | u16 eppi_req_24[] = EPPI0_24; | 256 | u16 eppi_req_24[] = EPPI0_24; |
257 | 257 | ||
258 | if (peripheral_request_list(eppi_req_24, DRIVER_NAME)) { | 258 | if (peripheral_request_list(eppi_req_24, DRIVER_NAME)) { |
259 | printk(KERN_ERR "Requesting Peripherals faild\n"); | 259 | printk(KERN_ERR "Requesting Peripherals failed\n"); |
260 | peripheral_free_list(eppi_req_18); | 260 | peripheral_free_list(eppi_req_18); |
261 | gpio_free(disp); | 261 | gpio_free(disp); |
262 | return -EFAULT; | 262 | return -EFAULT; |
diff --git a/drivers/video/bfin-t350mcqb-fb.c b/drivers/video/bfin-t350mcqb-fb.c index 7a50272eaab9..3cf77676947c 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) | |||
192 | { | 192 | { |
193 | if (action) { | 193 | if (action) { |
194 | if (peripheral_request_list(ppi0_req_8, DRIVER_NAME)) { | 194 | if (peripheral_request_list(ppi0_req_8, DRIVER_NAME)) { |
195 | printk(KERN_ERR "Requesting Peripherals faild\n"); | 195 | printk(KERN_ERR "Requesting Peripherals failed\n"); |
196 | return -EFAULT; | 196 | return -EFAULT; |
197 | } | 197 | } |
198 | } else | 198 | } else |