aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/smscufx.c
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-07-22 00:23:15 +0900
committerJiri Kosina <jkosina@suse.cz>2012-07-24 12:58:15 +0200
commitff0c26424c1d993d8d1e04f72f1d428e935798da (patch)
treeacd684945cc5b97970419e0a96f2423ff9212ebf /drivers/video/smscufx.c
parentf9028317b2046ea13595c55fb29922d8d97cf497 (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/smscufx.c b/drivers/video/smscufx.c
index 2e4c2492173..538e5efe877 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;
}
}