video: Fix typo in drivers/video
authorMasanari Iida <standby24x7@gmail.com>
Sat, 21 Jul 2012 15:23:15 +0000 (00:23 +0900)
committerJiri Kosina <jkosina@suse.cz>
Tue, 24 Jul 2012 10:58:15 +0000 (12:58 +0200)
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>
13 files changed:
drivers/video/arcfb.c
drivers/video/atmel_lcdfb.c
drivers/video/aty/atyfb_base.c
drivers/video/aty/radeon_base.c
drivers/video/bfin_adv7393fb.c
drivers/video/cirrusfb.c
drivers/video/exynos/exynos_dp_reg.c
drivers/video/exynos/exynos_mipi_dsi.c
drivers/video/i740fb.c
drivers/video/s3c-fb.c
drivers/video/savage/savagefb_driver.c
drivers/video/smscufx.c
drivers/video/sunxvr500.c

index c22e8d39a2cb1371ff88bc6840cacbbbc8123c37..a1d58e9d3073e1ff57bead6eb1cefbe4d98e6f84 100644 (file)
@@ -336,8 +336,8 @@ static void arcfb_lcd_update_horiz(struct arcfb_par *par, unsigned int left,
 }
 
 /*
- * here we start the process of spliting out the fb update into
- * individual blocks of pixels. we end up spliting into 64x64 blocks
+ * here we start the process of splitting out the fb update into
+ * individual blocks of pixels. we end up splitting into 64x64 blocks
  * and finally down to 64x8 pages.
  */
 static void arcfb_lcd_update(struct arcfb_par *par, unsigned int dx,
index d99505b163744d09561a191b30161d0b5cc8cdad..15055395cd95a1eff62591c81111501dda1e6560 100644 (file)
@@ -939,7 +939,7 @@ static int __init atmel_lcdfb_probe(struct platform_device *pdev)
                 * up a splash image.
                 */
        } else {
-               /* alocate memory buffer */
+               /* allocate memory buffer */
                ret = atmel_lcdfb_alloc_video_memory(sinfo);
                if (ret < 0) {
                        dev_err(dev, "cannot allocate framebuffer: %d\n", ret);
index 622f12b62a470ffb84658085c8d57194a33a7c63..3f2e8c13f1ca745bd0d0fbe9ce51784823c276e4 100644 (file)
@@ -863,7 +863,7 @@ static int aty_var_to_crtc(const struct fb_info *info,
 
        if ((xres > 1600) || (yres > 1200)) {
                FAIL("MACH64 chips are designed for max 1600x1200\n"
-                    "select anoter resolution.");
+                    "select another resolution.");
        }
        h_sync_strt = h_disp + var->right_margin;
        h_sync_end = h_sync_strt + var->hsync_len;
index ce1506b75adfb4c04a028498b111b497139a8dec..9e279ee38da8e976ac1e70a8555fa04f16950212 100644 (file)
@@ -2018,7 +2018,7 @@ static void radeon_identify_vram(struct radeonfb_info *rinfo)
           if ((rinfo->family == CHIP_FAMILY_RS100) ||
               (rinfo->family == CHIP_FAMILY_RS200)) {
              /* This is to workaround the asic bug for RMX, some versions
-                of BIOS dosen't have this register initialized correctly.
+                of BIOS doesn't have this register initialized correctly.
              */
              OUTREGP(CRTC_MORE_CNTL, CRTC_H_CUTOFF_ACTIVE_EN,
                      ~CRTC_H_CUTOFF_ACTIVE_EN);
index 1a268a294478d3de76613efd6581e542a296acc5..633e9fe0d1774f88626ac31a1c4d5d15aed5be44 100644 (file)
@@ -58,7 +58,7 @@ static const unsigned short ppi_pins[] = {
  */
 
 static struct bfin_adv7393_fb_par {
-       /* structure holding blackfin / adv7393 paramters when
+       /* structure holding blackfin / adv7393 parameters when
           screen is blanked */
        struct {
                u8 Mode;        /* ntsc/pal/? */
index 738c8ce7d132d1aaa88c3c625f5a6bc51aa04d72..bc67d05cad60f0d31b34548f17a1176891710bf2 100644 (file)
@@ -1611,7 +1611,7 @@ static void init_vgachip(struct fb_info *info)
        /* ext. display controls: ext.adr. wrap */
        vga_wcrt(cinfo->regbase, CL_CRT1B, 0x02);
 
-       /* Set/Reset registes: - */
+       /* Set/Reset registers: - */
        vga_wgfx(cinfo->regbase, VGA_GFX_SR_VALUE, 0x00);
        /* Set/Reset enable: - */
        vga_wgfx(cinfo->regbase, VGA_GFX_SR_ENABLE, 0x00);
index 6548afa0e3d21da1e543d2dd38c0b7de749b06d2..7ddd67d4bd7a51201061c44a63cecb03e1746a45 100644 (file)
@@ -717,7 +717,7 @@ int exynos_dp_read_bytes_from_i2c(struct exynos_dp_device *dp,
 
                        /*
                         * If Rx sends defer, Tx sends only reads
-                        * request without sending addres
+                        * request without sending address
                         */
                        if (!defer)
                                retval = exynos_dp_select_i2c_device(dp,
index 557091dc0e97382bcab08baa165d21ea6b5ff8f8..115e1b0a1970816d0d51fc172066159e0ffe629a 100644 (file)
@@ -104,7 +104,7 @@ static void exynos_mipi_update_cfg(struct mipi_dsim_device *dsim)
 
        /*
         * data from Display controller(FIMD) is transferred in video mode
-        * but in case of command mode, all settigs is updated to registers.
+        * but in case of command mode, all settings are updated to registers.
         */
        exynos_mipi_dsi_stand_by(dsim, 1);
 }
index fe574d84ed9973e5f2abdf1240b27487249df3af..ff3f8808e4e9ed24a1d3defcca0cb6c11259ce93 100644 (file)
@@ -497,7 +497,7 @@ static int i740fb_decode_var(const struct fb_var_screeninfo *var,
 
        mem = vxres * vyres * ((bpp + 1) / 8);
        if (mem > info->screen_size) {
-               dev_err(info->device, "not enough video memory (%d KB requested, %ld KB avaliable)\n",
+               dev_err(info->device, "not enough video memory (%d KB requested, %ld KB available)\n",
                        mem >> 10, info->screen_size >> 10);
                return -ENOMEM;
        }
@@ -728,7 +728,7 @@ static void vga_protect(struct i740fb_par *par)
        i740outreg_mask(par, VGA_SEQ_I, VGA_SEQ_CLOCK_MODE, 0x20, 0x20);
 
        i740inb(par, 0x3DA);
-       i740outb(par, VGA_ATT_W, 0x00); /* enable pallete access */
+       i740outb(par, VGA_ATT_W, 0x00); /* enable palette access */
 }
 
 static void vga_unprotect(struct i740fb_par *par)
@@ -737,7 +737,7 @@ static void vga_unprotect(struct i740fb_par *par)
        i740outreg_mask(par, VGA_SEQ_I, VGA_SEQ_CLOCK_MODE, 0, 0x20);
 
        i740inb(par, 0x3DA);
-       i740outb(par, VGA_ATT_W, 0x20); /* disable pallete access */
+       i740outb(par, VGA_ATT_W, 0x20); /* disable palette access */
 }
 
 static int i740fb_set_par(struct fb_info *info)
index f3105160bf9829104d22ec4c9e2b24c063debeaa..e5331fce0b446cdfa33ea0b40029a4a5ca756deb 100644 (file)
@@ -189,7 +189,7 @@ struct s3c_fb_vsync {
 
 /**
  * struct s3c_fb - overall hardware state of the hardware
- * @slock: The spinlock protection for this data sturcture.
+ * @slock: The spinlock protection for this data sturucture.
  * @dev: The device that we bound to, for printing, etc.
  * @bus_clk: The clk (hclk) feeding our interface and possibly pixclk.
  * @lcd_clk: The clk (sclk) feeding pixclk.
index cee7803a0a1c74fe09c1129f5edc927e58dfe86f..b4c2e2189322847fcf9bfebfdf8ee152a425b6f7 100644 (file)
@@ -662,7 +662,7 @@ static void savage_get_default_par(struct savagefb_par *par, struct savage_reg *
        vga_out8(0x3c4, 0x18, par);
        reg->SR18 = vga_in8(0x3c5, par);
 
-       /* Save flat panel expansion regsters. */
+       /* Save flat panel expansion registers. */
        if (par->chip == S3_SAVAGE_MX) {
                int i;
 
@@ -815,7 +815,7 @@ static void savage_set_default_par(struct savagefb_par *par,
        vga_out8(0x3c4, 0x18, par);
        vga_out8(0x3c5, reg->SR18, par);
 
-       /* Save flat panel expansion regsters. */
+       /* Save flat panel expansion registers. */
        if (par->chip == S3_SAVAGE_MX) {
                int i;
 
@@ -1318,7 +1318,7 @@ static void savagefb_set_par_int(struct savagefb_par  *par, struct savage_reg *r
        vga_out8(0x3c4, 0x15, par);
        vga_out8(0x3c5, reg->SR15, par);
 
-       /* Restore flat panel expansion regsters. */
+       /* Restore flat panel expansion registers. */
        if (par->chip == S3_SAVAGE_MX) {
                int i;
 
index 2e4c2492173a625eb2714348bbba06e0cda17842..538e5efe877ab24571fc37b47cca6786a5fb254b 100644 (file)
@@ -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;
                }
        }
index b9c2b948d34d515b4cdccaa6c70d5ab1da29e063..eb931b8626fac98b505506ea5db46d0d8cc1b338 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <asm/io.h>
 
-/* XXX This device has a 'dev-comm' property which aparently is
+/* XXX This device has a 'dev-comm' property which apparently is
  * XXX a pointer into the openfirmware's address space which is
  * XXX a shared area the kernel driver can use to keep OBP
  * XXX informed about the current resolution setting.  The idea