diff options
author | Masanari Iida <standby24x7@gmail.com> | 2013-04-08 13:06:50 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-04-12 09:21:36 -0400 |
commit | a895d57da04a4a24cda996e1a72425ff7e7e6c22 (patch) | |
tree | 39ce16341f0bd80113ad72442a14e54625d0c9c1 | |
parent | 393b148f9d0e70cfcb0096985bb0f0742802929e (diff) |
treewide: Fix typo in printks
Correct spelling typos in printk and comments.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/media/pci/saa7164/saa7164-core.c | 2 | ||||
-rw-r--r-- | drivers/rtc/Kconfig | 4 | ||||
-rw-r--r-- | drivers/rtc/rtc-max8997.c | 2 | ||||
-rw-r--r-- | drivers/usb/misc/iowarrior.c | 4 | ||||
-rw-r--r-- | drivers/video/amifb.c | 2 | ||||
-rw-r--r-- | drivers/video/auo_k190x.c | 2 | ||||
-rw-r--r-- | drivers/video/s1d13xxxfb.c | 2 | ||||
-rw-r--r-- | drivers/video/ssd1307fb.c | 4 | ||||
-rw-r--r-- | fs/nfs/objlayout/objio_osd.c | 2 | ||||
-rw-r--r-- | fs/nfs/objlayout/objlayout.h | 2 | ||||
-rw-r--r-- | sound/soc/codecs/wm8974.c | 2 | ||||
-rw-r--r-- | tools/perf/tests/attr.c | 2 | ||||
-rw-r--r-- | tools/perf/tests/parse-events.c | 2 |
13 files changed, 16 insertions, 16 deletions
diff --git a/drivers/media/pci/saa7164/saa7164-core.c b/drivers/media/pci/saa7164/saa7164-core.c index 63502e7a2a76..7618fdae811e 100644 --- a/drivers/media/pci/saa7164/saa7164-core.c +++ b/drivers/media/pci/saa7164/saa7164-core.c | |||
@@ -54,7 +54,7 @@ MODULE_PARM_DESC(debug, "enable debug messages"); | |||
54 | 54 | ||
55 | unsigned int fw_debug; | 55 | unsigned int fw_debug; |
56 | module_param(fw_debug, int, 0644); | 56 | module_param(fw_debug, int, 0644); |
57 | MODULE_PARM_DESC(fw_debug, "Firware debug level def:2"); | 57 | MODULE_PARM_DESC(fw_debug, "Firmware debug level def:2"); |
58 | 58 | ||
59 | unsigned int encoder_buffers = SAA7164_MAX_ENCODER_BUFFERS; | 59 | unsigned int encoder_buffers = SAA7164_MAX_ENCODER_BUFFERS; |
60 | module_param(encoder_buffers, int, 0644); | 60 | module_param(encoder_buffers, int, 0644); |
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index 79fbe3832dfc..0c81915b1997 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
@@ -402,7 +402,7 @@ config RTC_DRV_TPS6586X | |||
402 | tristate "TI TPS6586X RTC driver" | 402 | tristate "TI TPS6586X RTC driver" |
403 | depends on MFD_TPS6586X | 403 | depends on MFD_TPS6586X |
404 | help | 404 | help |
405 | TI Power Managment IC TPS6586X supports RTC functionality | 405 | TI Power Management IC TPS6586X supports RTC functionality |
406 | along with alarm. This driver supports the RTC driver for | 406 | along with alarm. This driver supports the RTC driver for |
407 | the TPS6586X RTC module. | 407 | the TPS6586X RTC module. |
408 | 408 | ||
@@ -420,7 +420,7 @@ config RTC_DRV_TPS80031 | |||
420 | tristate "TI TPS80031/TPS80032 RTC driver" | 420 | tristate "TI TPS80031/TPS80032 RTC driver" |
421 | depends on MFD_TPS80031 | 421 | depends on MFD_TPS80031 |
422 | help | 422 | help |
423 | TI Power Managment IC TPS80031 supports RTC functionality | 423 | TI Power Management IC TPS80031 supports RTC functionality |
424 | along with alarm. This driver supports the RTC driver for | 424 | along with alarm. This driver supports the RTC driver for |
425 | the TPS80031 RTC module. | 425 | the TPS80031 RTC module. |
426 | 426 | ||
diff --git a/drivers/rtc/rtc-max8997.c b/drivers/rtc/rtc-max8997.c index 00e505b6bee3..f15202c771da 100644 --- a/drivers/rtc/rtc-max8997.c +++ b/drivers/rtc/rtc-max8997.c | |||
@@ -24,7 +24,7 @@ | |||
24 | /* Module parameter for WTSR function control */ | 24 | /* Module parameter for WTSR function control */ |
25 | static int wtsr_en = 1; | 25 | static int wtsr_en = 1; |
26 | module_param(wtsr_en, int, 0444); | 26 | module_param(wtsr_en, int, 0444); |
27 | MODULE_PARM_DESC(wtsr_en, "Wachdog Timeout & Sofware Reset (default=on)"); | 27 | MODULE_PARM_DESC(wtsr_en, "Watchdog Timeout & Software Reset (default=on)"); |
28 | /* Module parameter for SMPL function control */ | 28 | /* Module parameter for SMPL function control */ |
29 | static int smpl_en = 1; | 29 | static int smpl_en = 1; |
30 | module_param(smpl_en, int, 0444); | 30 | module_param(smpl_en, int, 0444); |
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index db46143c67a6..d36f34e25bed 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
@@ -672,7 +672,7 @@ static int iowarrior_release(struct inode *inode, struct file *file) | |||
672 | retval = -ENODEV; /* close called more than once */ | 672 | retval = -ENODEV; /* close called more than once */ |
673 | mutex_unlock(&dev->mutex); | 673 | mutex_unlock(&dev->mutex); |
674 | } else { | 674 | } else { |
675 | dev->opened = 0; /* we're closeing now */ | 675 | dev->opened = 0; /* we're closing now */ |
676 | retval = 0; | 676 | retval = 0; |
677 | if (dev->present) { | 677 | if (dev->present) { |
678 | /* | 678 | /* |
@@ -802,7 +802,7 @@ static int iowarrior_probe(struct usb_interface *interface, | |||
802 | /* this one will match for the IOWarrior56 only */ | 802 | /* this one will match for the IOWarrior56 only */ |
803 | dev->int_out_endpoint = endpoint; | 803 | dev->int_out_endpoint = endpoint; |
804 | } | 804 | } |
805 | /* we have to check the report_size often, so remember it in the endianess suitable for our machine */ | 805 | /* we have to check the report_size often, so remember it in the endianness suitable for our machine */ |
806 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); | 806 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); |
807 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && | 807 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && |
808 | (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56)) | 808 | (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56)) |
diff --git a/drivers/video/amifb.c b/drivers/video/amifb.c index 7fa1bf823729..87b2bb3f83fc 100644 --- a/drivers/video/amifb.c +++ b/drivers/video/amifb.c | |||
@@ -1181,7 +1181,7 @@ static int ami_decode_var(struct fb_var_screeninfo *var, struct amifb_par *par, | |||
1181 | } | 1181 | } |
1182 | 1182 | ||
1183 | /* | 1183 | /* |
1184 | * FB_VMODE_SMOOTH_XPAN will be cleared, if one of the folloing | 1184 | * FB_VMODE_SMOOTH_XPAN will be cleared, if one of the following |
1185 | * checks failed and smooth scrolling is not possible | 1185 | * checks failed and smooth scrolling is not possible |
1186 | */ | 1186 | */ |
1187 | 1187 | ||
diff --git a/drivers/video/auo_k190x.c b/drivers/video/auo_k190x.c index 53846cb534d4..47e6770fa1fe 100644 --- a/drivers/video/auo_k190x.c +++ b/drivers/video/auo_k190x.c | |||
@@ -935,7 +935,7 @@ int auok190x_common_probe(struct platform_device *pdev, | |||
935 | goto err_defio; | 935 | goto err_defio; |
936 | } | 936 | } |
937 | 937 | ||
938 | dev_dbg(info->device, "targetting %d frames per second\n", board->fps); | 938 | dev_dbg(info->device, "targeting %d frames per second\n", board->fps); |
939 | info->fbdefio->delay = HZ / board->fps; | 939 | info->fbdefio->delay = HZ / board->fps; |
940 | info->fbdefio->first_io = auok190xfb_dpy_first_io, | 940 | info->fbdefio->first_io = auok190xfb_dpy_first_io, |
941 | info->fbdefio->deferred_io = auok190xfb_dpy_deferred_io, | 941 | info->fbdefio->deferred_io = auok190xfb_dpy_deferred_io, |
diff --git a/drivers/video/s1d13xxxfb.c b/drivers/video/s1d13xxxfb.c index 76d9053d88c1..05c2dc3d4bc0 100644 --- a/drivers/video/s1d13xxxfb.c +++ b/drivers/video/s1d13xxxfb.c | |||
@@ -862,7 +862,7 @@ static int s1d13xxxfb_probe(struct platform_device *pdev) | |||
862 | printk(KERN_INFO PFX | 862 | printk(KERN_INFO PFX |
863 | "unknown chip production id %i, revision %i\n", | 863 | "unknown chip production id %i, revision %i\n", |
864 | prod_id, revision); | 864 | prod_id, revision); |
865 | printk(KERN_INFO PFX "please contant maintainer\n"); | 865 | printk(KERN_INFO PFX "please contact maintainer\n"); |
866 | goto bail; | 866 | goto bail; |
867 | } | 867 | } |
868 | 868 | ||
diff --git a/drivers/video/ssd1307fb.c b/drivers/video/ssd1307fb.c index 395cb6a8d8f3..9ef05d3ef68a 100644 --- a/drivers/video/ssd1307fb.c +++ b/drivers/video/ssd1307fb.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Driver for the Solomon SSD1307 OLED controler | 2 | * Driver for the Solomon SSD1307 OLED controller |
3 | * | 3 | * |
4 | * Copyright 2012 Free Electrons | 4 | * Copyright 2012 Free Electrons |
5 | * | 5 | * |
@@ -392,6 +392,6 @@ static struct i2c_driver ssd1307fb_driver = { | |||
392 | 392 | ||
393 | module_i2c_driver(ssd1307fb_driver); | 393 | module_i2c_driver(ssd1307fb_driver); |
394 | 394 | ||
395 | MODULE_DESCRIPTION("FB driver for the Solomon SSD1307 OLED controler"); | 395 | MODULE_DESCRIPTION("FB driver for the Solomon SSD1307 OLED controller"); |
396 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); | 396 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); |
397 | MODULE_LICENSE("GPL"); | 397 | MODULE_LICENSE("GPL"); |
diff --git a/fs/nfs/objlayout/objio_osd.c b/fs/nfs/objlayout/objio_osd.c index 88f9611a945c..5457745dd4f1 100644 --- a/fs/nfs/objlayout/objio_osd.c +++ b/fs/nfs/objlayout/objio_osd.c | |||
@@ -234,7 +234,7 @@ static int __alloc_objio_seg(unsigned numdevs, gfp_t gfp_flags, | |||
234 | 234 | ||
235 | lseg = kzalloc(lseg_size, gfp_flags); | 235 | lseg = kzalloc(lseg_size, gfp_flags); |
236 | if (unlikely(!lseg)) { | 236 | if (unlikely(!lseg)) { |
237 | dprintk("%s: Faild allocation numdevs=%d size=%zd\n", __func__, | 237 | dprintk("%s: Failed allocation numdevs=%d size=%zd\n", __func__, |
238 | numdevs, lseg_size); | 238 | numdevs, lseg_size); |
239 | return -ENOMEM; | 239 | return -ENOMEM; |
240 | } | 240 | } |
diff --git a/fs/nfs/objlayout/objlayout.h b/fs/nfs/objlayout/objlayout.h index 880ba086be94..87aa1dec6120 100644 --- a/fs/nfs/objlayout/objlayout.h +++ b/fs/nfs/objlayout/objlayout.h | |||
@@ -114,7 +114,7 @@ extern int objio_alloc_lseg(struct pnfs_layout_segment **outp, | |||
114 | gfp_t gfp_flags); | 114 | gfp_t gfp_flags); |
115 | extern void objio_free_lseg(struct pnfs_layout_segment *lseg); | 115 | extern void objio_free_lseg(struct pnfs_layout_segment *lseg); |
116 | 116 | ||
117 | /* objio_free_result will free these @oir structs recieved from | 117 | /* objio_free_result will free these @oir structs received from |
118 | * objlayout_{read,write}_done | 118 | * objlayout_{read,write}_done |
119 | */ | 119 | */ |
120 | extern void objio_free_result(struct objlayout_io_res *oir); | 120 | extern void objio_free_result(struct objlayout_io_res *oir); |
diff --git a/sound/soc/codecs/wm8974.c b/sound/soc/codecs/wm8974.c index b47c252ef901..a2d01d10a5dd 100644 --- a/sound/soc/codecs/wm8974.c +++ b/sound/soc/codecs/wm8974.c | |||
@@ -125,7 +125,7 @@ SOC_ENUM("Equaliser EQ4 Bandwidth", wm8974_enum[9]), | |||
125 | SOC_ENUM("EQ4 Cut Off", wm8974_enum[10]), | 125 | SOC_ENUM("EQ4 Cut Off", wm8974_enum[10]), |
126 | SOC_SINGLE_TLV("EQ4 Volume", WM8974_EQ4, 0, 24, 1, eq_tlv), | 126 | SOC_SINGLE_TLV("EQ4 Volume", WM8974_EQ4, 0, 24, 1, eq_tlv), |
127 | 127 | ||
128 | SOC_ENUM("Equaliser EQ5 Bandwith", wm8974_enum[11]), | 128 | SOC_ENUM("Equaliser EQ5 Bandwidth", wm8974_enum[11]), |
129 | SOC_ENUM("EQ5 Cut Off", wm8974_enum[12]), | 129 | SOC_ENUM("EQ5 Cut Off", wm8974_enum[12]), |
130 | SOC_SINGLE_TLV("EQ5 Volume", WM8974_EQ5, 0, 24, 1, eq_tlv), | 130 | SOC_SINGLE_TLV("EQ5 Volume", WM8974_EQ5, 0, 24, 1, eq_tlv), |
131 | 131 | ||
diff --git a/tools/perf/tests/attr.c b/tools/perf/tests/attr.c index bdcceb886f77..e8257326ec61 100644 --- a/tools/perf/tests/attr.c +++ b/tools/perf/tests/attr.c | |||
@@ -173,6 +173,6 @@ int test__attr(void) | |||
173 | !lstat(path_perf, &st)) | 173 | !lstat(path_perf, &st)) |
174 | return run_dir(path_dir, path_perf); | 174 | return run_dir(path_dir, path_perf); |
175 | 175 | ||
176 | fprintf(stderr, " (ommitted)"); | 176 | fprintf(stderr, " (omitted)"); |
177 | return 0; | 177 | return 0; |
178 | } | 178 | } |
diff --git a/tools/perf/tests/parse-events.c b/tools/perf/tests/parse-events.c index c5636f36fe31..63986f9db580 100644 --- a/tools/perf/tests/parse-events.c +++ b/tools/perf/tests/parse-events.c | |||
@@ -1321,7 +1321,7 @@ static int test_pmu_events(void) | |||
1321 | 1321 | ||
1322 | ret = stat(path, &st); | 1322 | ret = stat(path, &st); |
1323 | if (ret) { | 1323 | if (ret) { |
1324 | pr_debug("ommiting PMU cpu events tests\n"); | 1324 | pr_debug("omitting PMU cpu events tests\n"); |
1325 | return 0; | 1325 | return 0; |
1326 | } | 1326 | } |
1327 | 1327 | ||