diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-07-21 15:23:15 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-07-24 10:58:15 (GMT) |
commit | ff0c26424c1d993d8d1e04f72f1d428e935798da (patch) | |
tree | acd684945cc5b97970419e0a96f2423ff9212ebf /drivers/video/smscufx.c | |
parent | f9028317b2046ea13595c55fb29922d8d97cf497 (diff) | |
download | linux-ff0c26424c1d993d8d1e04f72f1d428e935798da.tar.xz |
video: Fix typo in drivers/video
Correct spelling typo in debug messages and comments
within drivers/video.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/video/smscufx.c')
-rw-r--r-- | drivers/video/smscufx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/smscufx.c b/drivers/video/smscufx.c index 2e4c249..538e5ef 100644 --- a/drivers/video/smscufx.c +++ b/drivers/video/smscufx.c @@ -1002,7 +1002,7 @@ static int ufx_ops_ioctl(struct fb_info *info, unsigned int cmd, /* TODO: Help propose a standard fb.h ioctl to report mmap damage */ if (cmd == UFX_IOCTL_REPORT_DAMAGE) { /* If we have a damage-aware client, turn fb_defio "off" - * To avoid perf imact of unecessary page fault handling. + * To avoid perf imact of unnecessary page fault handling. * Done by resetting the delay for this fb_info to a very * long period. Pages will become writable and stay that way. * Reset to normal value when all clients have closed this fb. @@ -1466,7 +1466,7 @@ static int ufx_read_edid(struct ufx_data *dev, u8 *edid, int edid_len) /* all FF's in the first 16 bytes indicates nothing is connected */ for (i = 0; i < 16; i++) { if (edid[i] != 0xFF) { - pr_debug("edid data read succesfully"); + pr_debug("edid data read successfully"); return EDID_LENGTH; } } |