Skip to content

Commit 3879490

Browse files
Colin Ian Kingbzolnier
authored andcommitted
video: fbdev: fix spelling mistake: "frambuffer" -> "framebuffer"
Trivial fix to spelling mistake in error messages. Signed-off-by: Colin Ian King <colin.king@canonical.com> Cc: Markus Elfring <elfring@users.sourceforge.net> Cc: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
1 parent 6d09dfe commit 3879490

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/video/fbdev/au1100fb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ static int au1100fb_drv_probe(struct platform_device *dev)
464464
PAGE_ALIGN(fbdev->fb_len),
465465
&fbdev->fb_phys, GFP_KERNEL);
466466
if (!fbdev->fb_mem) {
467-
print_err("fail to allocate frambuffer (size: %dK))",
467+
print_err("fail to allocate framebuffer (size: %dK))",
468468
fbdev->fb_len / 1024);
469469
return -ENOMEM;
470470
}

drivers/video/fbdev/au1200fb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@ static int au1200fb_drv_probe(struct platform_device *dev)
16961696
&fbdev->fb_phys, GFP_KERNEL,
16971697
DMA_ATTR_NON_CONSISTENT);
16981698
if (!fbdev->fb_mem) {
1699-
print_err("fail to allocate frambuffer (size: %dK))",
1699+
print_err("fail to allocate framebuffer (size: %dK))",
17001700
fbdev->fb_len / 1024);
17011701
ret = -ENOMEM;
17021702
goto failed;

0 commit comments

Comments
 (0)