diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 12:12:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 12:12:26 -0400 |
commit | 57d19e80f459dd845fb3cfeba8e6df8471bac142 (patch) | |
tree | 8254766715720228db3d50f1ef3c7fe003c06d65 /drivers | |
parent | ee9ec4f82049c678373a611ce20ac67fe9ad836e (diff) | |
parent | e64851f5a0ad6ec991f74ebb3108c35aa0323d5f (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits)
b43: fix comment typo reqest -> request
Haavard Skinnemoen has left Atmel
cris: typo in mach-fs Makefile
Kconfig: fix copy/paste-ism for dell-wmi-aio driver
doc: timers-howto: fix a typo ("unsgined")
perf: Only include annotate.h once in tools/perf/util/ui/browsers/annotate.c
md, raid5: Fix spelling error in comment ('Ofcourse' --> 'Of course').
treewide: fix a few typos in comments
regulator: change debug statement be consistent with the style of the rest
Revert "arm: mach-u300/gpio: Fix mem_region resource size miscalculations"
audit: acquire creds selectively to reduce atomic op overhead
rtlwifi: don't touch with treewide double semicolon removal
treewide: cleanup continuations and remove logging message whitespace
ath9k_hw: don't touch with treewide double semicolon removal
include/linux/leds-regulator.h: fix syntax in example code
tty: fix typo in descripton of tty_termios_encode_baud_rate
xtensa: remove obsolete BKL kernel option from defconfig
m68k: fix comment typo 'occcured'
arch:Kconfig.locks Remove unused config option.
treewide: remove extra semicolons
...
Diffstat (limited to 'drivers')
87 files changed, 143 insertions, 144 deletions
diff --git a/drivers/acpi/acpica/utresrc.c b/drivers/acpi/acpica/utresrc.c index 84e051844247..6ffd3a8bdaa5 100644 --- a/drivers/acpi/acpica/utresrc.c +++ b/drivers/acpi/acpica/utresrc.c | |||
@@ -50,7 +50,7 @@ ACPI_MODULE_NAME("utresrc") | |||
50 | #if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) | 50 | #if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER) |
51 | /* | 51 | /* |
52 | * Strings used to decode resource descriptors. | 52 | * Strings used to decode resource descriptors. |
53 | * Used by both the disasssembler and the debugger resource dump routines | 53 | * Used by both the disassembler and the debugger resource dump routines |
54 | */ | 54 | */ |
55 | const char *acpi_gbl_bm_decode[] = { | 55 | const char *acpi_gbl_bm_decode[] = { |
56 | "NotBusMaster", | 56 | "NotBusMaster", |
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index ec574fc8fbc6..db39e9e607d8 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
@@ -1521,7 +1521,7 @@ static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data) | |||
1521 | acpi_bus_generate_proc_event(device, event, 0); | 1521 | acpi_bus_generate_proc_event(device, event, 0); |
1522 | keycode = KEY_BRIGHTNESSDOWN; | 1522 | keycode = KEY_BRIGHTNESSDOWN; |
1523 | break; | 1523 | break; |
1524 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightnesss */ | 1524 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */ |
1525 | if (brightness_switch_enabled) | 1525 | if (brightness_switch_enabled) |
1526 | acpi_video_switch_brightness(video_device, event); | 1526 | acpi_video_switch_brightness(video_device, event); |
1527 | acpi_bus_generate_proc_event(device, event, 0); | 1527 | acpi_bus_generate_proc_event(device, event, 0); |
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index 0a134a424a37..9f9b2359f718 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c | |||
@@ -389,15 +389,14 @@ memory_probe_store(struct class *class, struct class_attribute *attr, | |||
389 | ret = add_memory(nid, phys_addr, | 389 | ret = add_memory(nid, phys_addr, |
390 | PAGES_PER_SECTION << PAGE_SHIFT); | 390 | PAGES_PER_SECTION << PAGE_SHIFT); |
391 | if (ret) | 391 | if (ret) |
392 | break; | 392 | goto out; |
393 | 393 | ||
394 | phys_addr += MIN_MEMORY_BLOCK_SIZE; | 394 | phys_addr += MIN_MEMORY_BLOCK_SIZE; |
395 | } | 395 | } |
396 | 396 | ||
397 | if (ret) | 397 | ret = count; |
398 | count = ret; | 398 | out: |
399 | 399 | return ret; | |
400 | return count; | ||
401 | } | 400 | } |
402 | static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store); | 401 | static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store); |
403 | 402 | ||
diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c index e0888cb538d4..b4f5c32b6a47 100644 --- a/drivers/dma/dmatest.c +++ b/drivers/dma/dmatest.c | |||
@@ -56,8 +56,8 @@ MODULE_PARM_DESC(pq_sources, | |||
56 | 56 | ||
57 | static int timeout = 3000; | 57 | static int timeout = 3000; |
58 | module_param(timeout, uint, S_IRUGO); | 58 | module_param(timeout, uint, S_IRUGO); |
59 | MODULE_PARM_DESC(timeout, "Transfer Timeout in msec (default: 3000), \ | 59 | MODULE_PARM_DESC(timeout, "Transfer Timeout in msec (default: 3000), " |
60 | Pass -1 for infinite timeout"); | 60 | "Pass -1 for infinite timeout"); |
61 | 61 | ||
62 | /* | 62 | /* |
63 | * Initialization patterns. All bytes in the source buffer has bit 7 | 63 | * Initialization patterns. All bytes in the source buffer has bit 7 |
@@ -634,5 +634,5 @@ static void __exit dmatest_exit(void) | |||
634 | } | 634 | } |
635 | module_exit(dmatest_exit); | 635 | module_exit(dmatest_exit); |
636 | 636 | ||
637 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 637 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
638 | MODULE_LICENSE("GPL v2"); | 638 | MODULE_LICENSE("GPL v2"); |
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c index 9c25c7d099e4..2a2e2fa00e91 100644 --- a/drivers/dma/dw_dmac.c +++ b/drivers/dma/dw_dmac.c | |||
@@ -1486,4 +1486,4 @@ module_exit(dw_exit); | |||
1486 | 1486 | ||
1487 | MODULE_LICENSE("GPL v2"); | 1487 | MODULE_LICENSE("GPL v2"); |
1488 | MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller driver"); | 1488 | MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller driver"); |
1489 | MODULE_AUTHOR("Haavard Skinnemoen <haavard.skinnemoen@atmel.com>"); | 1489 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
diff --git a/drivers/firmware/efivars.c b/drivers/firmware/efivars.c index a2d2f1f0d4f3..5f29aafd4462 100644 --- a/drivers/firmware/efivars.c +++ b/drivers/firmware/efivars.c | |||
@@ -321,7 +321,7 @@ efivar_show_raw(struct efivar_entry *entry, char *buf) | |||
321 | 321 | ||
322 | /* | 322 | /* |
323 | * Generic read/write functions that call the specific functions of | 323 | * Generic read/write functions that call the specific functions of |
324 | * the atttributes... | 324 | * the attributes... |
325 | */ | 325 | */ |
326 | static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr, | 326 | static ssize_t efivar_attr_show(struct kobject *kobj, struct attribute *attr, |
327 | char *buf) | 327 | char *buf) |
diff --git a/drivers/firmware/iscsi_ibft.c b/drivers/firmware/iscsi_ibft.c index 6148a1c67895..ce33f4626957 100644 --- a/drivers/firmware/iscsi_ibft.c +++ b/drivers/firmware/iscsi_ibft.c | |||
@@ -87,8 +87,8 @@ | |||
87 | #define IBFT_ISCSI_VERSION "0.5.0" | 87 | #define IBFT_ISCSI_VERSION "0.5.0" |
88 | #define IBFT_ISCSI_DATE "2010-Feb-25" | 88 | #define IBFT_ISCSI_DATE "2010-Feb-25" |
89 | 89 | ||
90 | MODULE_AUTHOR("Peter Jones <pjones@redhat.com> and \ | 90 | MODULE_AUTHOR("Peter Jones <pjones@redhat.com> and " |
91 | Konrad Rzeszutek <ketuzsezr@darnok.org>"); | 91 | "Konrad Rzeszutek <ketuzsezr@darnok.org>"); |
92 | MODULE_DESCRIPTION("sysfs interface to BIOS iBFT information"); | 92 | MODULE_DESCRIPTION("sysfs interface to BIOS iBFT information"); |
93 | MODULE_LICENSE("GPL"); | 93 | MODULE_LICENSE("GPL"); |
94 | MODULE_VERSION(IBFT_ISCSI_VERSION); | 94 | MODULE_VERSION(IBFT_ISCSI_VERSION); |
diff --git a/drivers/gpio/ab8500-gpio.c b/drivers/gpio/ab8500-gpio.c index e7b834d054b7..970053c89ff7 100644 --- a/drivers/gpio/ab8500-gpio.c +++ b/drivers/gpio/ab8500-gpio.c | |||
@@ -482,8 +482,8 @@ static int __devexit ab8500_gpio_remove(struct platform_device *pdev) | |||
482 | 482 | ||
483 | ret = gpiochip_remove(&ab8500_gpio->chip); | 483 | ret = gpiochip_remove(&ab8500_gpio->chip); |
484 | if (ret < 0) { | 484 | if (ret < 0) { |
485 | dev_err(ab8500_gpio->dev, "unable to remove gpiochip:\ | 485 | dev_err(ab8500_gpio->dev, "unable to remove gpiochip: %d\n", |
486 | %d\n", ret); | 486 | ret); |
487 | return ret; | 487 | return ret; |
488 | } | 488 | } |
489 | 489 | ||
@@ -516,7 +516,6 @@ static void __exit ab8500_gpio_exit(void) | |||
516 | module_exit(ab8500_gpio_exit); | 516 | module_exit(ab8500_gpio_exit); |
517 | 517 | ||
518 | MODULE_AUTHOR("BIBEK BASU <bibek.basu@stericsson.com>"); | 518 | MODULE_AUTHOR("BIBEK BASU <bibek.basu@stericsson.com>"); |
519 | MODULE_DESCRIPTION("Driver allows to use AB8500 unused pins\ | 519 | MODULE_DESCRIPTION("Driver allows to use AB8500 unused pins to be used as GPIO"); |
520 | to be used as GPIO"); | ||
521 | MODULE_ALIAS("AB8500 GPIO driver"); | 520 | MODULE_ALIAS("AB8500 GPIO driver"); |
522 | MODULE_LICENSE("GPL v2"); | 521 | MODULE_LICENSE("GPL v2"); |
diff --git a/drivers/gpio/langwell_gpio.c b/drivers/gpio/langwell_gpio.c index 560ab648cf18..1b06f67e1f69 100644 --- a/drivers/gpio/langwell_gpio.c +++ b/drivers/gpio/langwell_gpio.c | |||
@@ -122,7 +122,7 @@ static int lnw_gpio_direction_output(struct gpio_chip *chip, | |||
122 | lnw_gpio_set(chip, offset, value); | 122 | lnw_gpio_set(chip, offset, value); |
123 | spin_lock_irqsave(&lnw->lock, flags); | 123 | spin_lock_irqsave(&lnw->lock, flags); |
124 | value = readl(gpdr); | 124 | value = readl(gpdr); |
125 | value |= BIT(offset % 32);; | 125 | value |= BIT(offset % 32); |
126 | writel(value, gpdr); | 126 | writel(value, gpdr); |
127 | spin_unlock_irqrestore(&lnw->lock, flags); | 127 | spin_unlock_irqrestore(&lnw->lock, flags); |
128 | return 0; | 128 | return 0; |
diff --git a/drivers/gpu/drm/radeon/radeon_fence.c b/drivers/gpu/drm/radeon/radeon_fence.c index bbcd1dd7bac0..1f8229436570 100644 --- a/drivers/gpu/drm/radeon/radeon_fence.c +++ b/drivers/gpu/drm/radeon/radeon_fence.c | |||
@@ -322,7 +322,7 @@ void radeon_fence_unref(struct radeon_fence **fence) | |||
322 | 322 | ||
323 | *fence = NULL; | 323 | *fence = NULL; |
324 | if (tmp) { | 324 | if (tmp) { |
325 | kref_put(&tmp->kref, &radeon_fence_destroy); | 325 | kref_put(&tmp->kref, radeon_fence_destroy); |
326 | } | 326 | } |
327 | } | 327 | } |
328 | 328 | ||
diff --git a/drivers/gpu/drm/radeon/radeon_ring.c b/drivers/gpu/drm/radeon/radeon_ring.c index c6776e48fdde..08c0233db1b8 100644 --- a/drivers/gpu/drm/radeon/radeon_ring.c +++ b/drivers/gpu/drm/radeon/radeon_ring.c | |||
@@ -194,7 +194,7 @@ int radeon_ib_pool_init(struct radeon_device *rdev) | |||
194 | r = radeon_bo_kmap(rdev->ib_pool.robj, &ptr); | 194 | r = radeon_bo_kmap(rdev->ib_pool.robj, &ptr); |
195 | radeon_bo_unreserve(rdev->ib_pool.robj); | 195 | radeon_bo_unreserve(rdev->ib_pool.robj); |
196 | if (r) { | 196 | if (r) { |
197 | DRM_ERROR("radeon: failed to map ib poll (%d).\n", r); | 197 | DRM_ERROR("radeon: failed to map ib pool (%d).\n", r); |
198 | return r; | 198 | return r; |
199 | } | 199 | } |
200 | for (i = 0; i < RADEON_IB_POOL_SIZE; i++) { | 200 | for (i = 0; i < RADEON_IB_POOL_SIZE; i++) { |
diff --git a/drivers/gpu/drm/ttm/ttm_object.c b/drivers/gpu/drm/ttm/ttm_object.c index 75e9d6f86ba4..ebddd443d91a 100644 --- a/drivers/gpu/drm/ttm/ttm_object.c +++ b/drivers/gpu/drm/ttm/ttm_object.c | |||
@@ -206,7 +206,7 @@ void ttm_base_object_unref(struct ttm_base_object **p_base) | |||
206 | */ | 206 | */ |
207 | 207 | ||
208 | write_lock(&tdev->object_lock); | 208 | write_lock(&tdev->object_lock); |
209 | (void)kref_put(&base->refcount, &ttm_release_base); | 209 | kref_put(&base->refcount, ttm_release_base); |
210 | write_unlock(&tdev->object_lock); | 210 | write_unlock(&tdev->object_lock); |
211 | } | 211 | } |
212 | EXPORT_SYMBOL(ttm_base_object_unref); | 212 | EXPORT_SYMBOL(ttm_base_object_unref); |
diff --git a/drivers/i2c/busses/i2c-gpio.c b/drivers/i2c/busses/i2c-gpio.c index d9aa9a649e35..a651779d9ff7 100644 --- a/drivers/i2c/busses/i2c-gpio.c +++ b/drivers/i2c/busses/i2c-gpio.c | |||
@@ -219,7 +219,7 @@ static void __exit i2c_gpio_exit(void) | |||
219 | } | 219 | } |
220 | module_exit(i2c_gpio_exit); | 220 | module_exit(i2c_gpio_exit); |
221 | 221 | ||
222 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 222 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
223 | MODULE_DESCRIPTION("Platform-independent bitbanging I2C driver"); | 223 | MODULE_DESCRIPTION("Platform-independent bitbanging I2C driver"); |
224 | MODULE_LICENSE("GPL"); | 224 | MODULE_LICENSE("GPL"); |
225 | MODULE_ALIAS("platform:i2c-gpio"); | 225 | MODULE_ALIAS("platform:i2c-gpio"); |
diff --git a/drivers/leds/leds-mc13783.c b/drivers/leds/leds-mc13783.c index 06a5bb484707..126ca7955f6e 100644 --- a/drivers/leds/leds-mc13783.c +++ b/drivers/leds/leds-mc13783.c | |||
@@ -235,7 +235,7 @@ static int __devinit mc13783_leds_prepare(struct platform_device *pdev) | |||
235 | MC13783_LED_Cx_PERIOD; | 235 | MC13783_LED_Cx_PERIOD; |
236 | 236 | ||
237 | if (pdata->flags & MC13783_LED_TRIODE_TC3) | 237 | if (pdata->flags & MC13783_LED_TRIODE_TC3) |
238 | reg |= MC13783_LED_Cx_TRIODE_TC_BIT;; | 238 | reg |= MC13783_LED_Cx_TRIODE_TC_BIT; |
239 | 239 | ||
240 | ret = mc13783_reg_write(dev, MC13783_REG_LED_CONTROL_5, reg); | 240 | ret = mc13783_reg_write(dev, MC13783_REG_LED_CONTROL_5, reg); |
241 | if (ret) | 241 | if (ret) |
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index bb8b722a9783..0ff92c208005 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
@@ -44,11 +44,11 @@ | |||
44 | * TODO: - Check MPU structure version/signature | 44 | * TODO: - Check MPU structure version/signature |
45 | * - Add things like /sbin/overtemp for non-critical | 45 | * - Add things like /sbin/overtemp for non-critical |
46 | * overtemp conditions so userland can take some policy | 46 | * overtemp conditions so userland can take some policy |
47 | * decisions, like slewing down CPUs | 47 | * decisions, like slowing down CPUs |
48 | * - Deal with fan and i2c failures in a better way | 48 | * - Deal with fan and i2c failures in a better way |
49 | * - Maybe do a generic PID based on params used for | 49 | * - Maybe do a generic PID based on params used for |
50 | * U3 and Drives ? Definitely need to factor code a bit | 50 | * U3 and Drives ? Definitely need to factor code a bit |
51 | * bettter... also make sensor detection more robust using | 51 | * better... also make sensor detection more robust using |
52 | * the device-tree to probe for them | 52 | * the device-tree to probe for them |
53 | * - Figure out how to get the slots consumption and set the | 53 | * - Figure out how to get the slots consumption and set the |
54 | * slots fan accordingly | 54 | * slots fan accordingly |
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 34dd54539f7b..346e69bfdab3 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -3958,7 +3958,7 @@ static int make_request(mddev_t *mddev, struct bio * bi) | |||
3958 | /* spinlock is needed as reshape_progress may be | 3958 | /* spinlock is needed as reshape_progress may be |
3959 | * 64bit on a 32bit platform, and so it might be | 3959 | * 64bit on a 32bit platform, and so it might be |
3960 | * possible to see a half-updated value | 3960 | * possible to see a half-updated value |
3961 | * Ofcourse reshape_progress could change after | 3961 | * Of course reshape_progress could change after |
3962 | * the lock is dropped, so once we get a reference | 3962 | * the lock is dropped, so once we get a reference |
3963 | * to the stripe that we think it is, we will have | 3963 | * to the stripe that we think it is, we will have |
3964 | * to check again. | 3964 | * to check again. |
diff --git a/drivers/media/dvb/dvb-usb/dw2102.c b/drivers/media/dvb/dvb-usb/dw2102.c index f5b9da18f611..d312323504a4 100644 --- a/drivers/media/dvb/dvb-usb/dw2102.c +++ b/drivers/media/dvb/dvb-usb/dw2102.c | |||
@@ -1377,7 +1377,7 @@ static struct rc_map_table rc_map_su3000_table[] = { | |||
1377 | { 0x0f, KEY_BLUE }, /* bottom yellow button */ | 1377 | { 0x0f, KEY_BLUE }, /* bottom yellow button */ |
1378 | { 0x14, KEY_AUDIO }, /* Snapshot */ | 1378 | { 0x14, KEY_AUDIO }, /* Snapshot */ |
1379 | { 0x38, KEY_TV }, /* TV/Radio */ | 1379 | { 0x38, KEY_TV }, /* TV/Radio */ |
1380 | { 0x0c, KEY_ESC } /* upper Red buttton */ | 1380 | { 0x0c, KEY_ESC } /* upper Red button */ |
1381 | }; | 1381 | }; |
1382 | 1382 | ||
1383 | static struct rc_map_dvb_usb_table_table keys_tables[] = { | 1383 | static struct rc_map_dvb_usb_table_table keys_tables[] = { |
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index 8126622fb4f5..de5d481b0328 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -96,7 +96,7 @@ MODULE_PARM_DESC(debug, "Enable debug messages [0-3]"); | |||
96 | MODULE_PARM_DESC(stereo_threshold, "Sets signal threshold to activate stereo"); | 96 | MODULE_PARM_DESC(stereo_threshold, "Sets signal threshold to activate stereo"); |
97 | MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect"); | 97 | MODULE_PARM_DESC(standard, "Specify audio standard: 32 = NTSC, 64 = radio, Default: Autodetect"); |
98 | MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan"); | 98 | MODULE_PARM_DESC(amsound, "Hardwire AM sound at 6.5Hz (France), FM can autoscan"); |
99 | MODULE_PARM_DESC(dolby, "Activates Dolby processsing"); | 99 | MODULE_PARM_DESC(dolby, "Activates Dolby processing"); |
100 | 100 | ||
101 | /* ---------------------------------------------------------------------- */ | 101 | /* ---------------------------------------------------------------------- */ |
102 | 102 | ||
diff --git a/drivers/media/video/saa7164/saa7164-encoder.c b/drivers/media/video/saa7164/saa7164-encoder.c index f9d594698832..400364569c8d 100644 --- a/drivers/media/video/saa7164/saa7164-encoder.c +++ b/drivers/media/video/saa7164/saa7164-encoder.c | |||
@@ -177,7 +177,7 @@ static int saa7164_encoder_buffers_alloc(struct saa7164_port *port) | |||
177 | } | 177 | } |
178 | } | 178 | } |
179 | 179 | ||
180 | /* Allocate some kenrel kernel buffers for copying | 180 | /* Allocate some kernel buffers for copying |
181 | * to userpsace. | 181 | * to userpsace. |
182 | */ | 182 | */ |
183 | len = params->numberoflines * params->pitch; | 183 | len = params->numberoflines * params->pitch; |
diff --git a/drivers/media/video/saa7164/saa7164-vbi.c b/drivers/media/video/saa7164/saa7164-vbi.c index 9e5b01c29cf5..bc1fcedba874 100644 --- a/drivers/media/video/saa7164/saa7164-vbi.c +++ b/drivers/media/video/saa7164/saa7164-vbi.c | |||
@@ -148,7 +148,7 @@ static int saa7164_vbi_buffers_alloc(struct saa7164_port *port) | |||
148 | } | 148 | } |
149 | } | 149 | } |
150 | 150 | ||
151 | /* Allocate some kenrel kernel buffers for copying | 151 | /* Allocate some kernel buffers for copying |
152 | * to userpsace. | 152 | * to userpsace. |
153 | */ | 153 | */ |
154 | len = params->numberoflines * params->pitch; | 154 | len = params->numberoflines * params->pitch; |
diff --git a/drivers/media/video/usbvision/usbvision-video.c b/drivers/media/video/usbvision/usbvision-video.c index 6083137f0bf8..9855fbe5927a 100644 --- a/drivers/media/video/usbvision/usbvision-video.c +++ b/drivers/media/video/usbvision/usbvision-video.c | |||
@@ -70,8 +70,9 @@ | |||
70 | #include "usbvision.h" | 70 | #include "usbvision.h" |
71 | #include "usbvision-cards.h" | 71 | #include "usbvision-cards.h" |
72 | 72 | ||
73 | #define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>, \ | 73 | #define DRIVER_AUTHOR \ |
74 | Dwaine Garden <DwaineGarden@rogers.com>" | 74 | "Joerg Heckenbach <joerg@heckenbach-aw.de>, " \ |
75 | "Dwaine Garden <DwaineGarden@rogers.com>" | ||
75 | #define DRIVER_NAME "usbvision" | 76 | #define DRIVER_NAME "usbvision" |
76 | #define DRIVER_ALIAS "USBVision" | 77 | #define DRIVER_ALIAS "USBVision" |
77 | #define DRIVER_DESC "USBVision USB Video Device Driver for Linux" | 78 | #define DRIVER_DESC "USBVision USB Video Device Driver for Linux" |
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index fa15e853d4e8..7956a10f9488 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
@@ -83,19 +83,18 @@ MODULE_VERSION(my_VERSION); | |||
83 | 83 | ||
84 | static int mpt_msi_enable_spi; | 84 | static int mpt_msi_enable_spi; |
85 | module_param(mpt_msi_enable_spi, int, 0); | 85 | module_param(mpt_msi_enable_spi, int, 0); |
86 | MODULE_PARM_DESC(mpt_msi_enable_spi, " Enable MSI Support for SPI \ | 86 | MODULE_PARM_DESC(mpt_msi_enable_spi, |
87 | controllers (default=0)"); | 87 | " Enable MSI Support for SPI controllers (default=0)"); |
88 | 88 | ||
89 | static int mpt_msi_enable_fc; | 89 | static int mpt_msi_enable_fc; |
90 | module_param(mpt_msi_enable_fc, int, 0); | 90 | module_param(mpt_msi_enable_fc, int, 0); |
91 | MODULE_PARM_DESC(mpt_msi_enable_fc, " Enable MSI Support for FC \ | 91 | MODULE_PARM_DESC(mpt_msi_enable_fc, |
92 | controllers (default=0)"); | 92 | " Enable MSI Support for FC controllers (default=0)"); |
93 | 93 | ||
94 | static int mpt_msi_enable_sas; | 94 | static int mpt_msi_enable_sas; |
95 | module_param(mpt_msi_enable_sas, int, 0); | 95 | module_param(mpt_msi_enable_sas, int, 0); |
96 | MODULE_PARM_DESC(mpt_msi_enable_sas, " Enable MSI Support for SAS \ | 96 | MODULE_PARM_DESC(mpt_msi_enable_sas, |
97 | controllers (default=0)"); | 97 | " Enable MSI Support for SAS controllers (default=0)"); |
98 | |||
99 | 98 | ||
100 | static int mpt_channel_mapping; | 99 | static int mpt_channel_mapping; |
101 | module_param(mpt_channel_mapping, int, 0); | 100 | module_param(mpt_channel_mapping, int, 0); |
@@ -105,15 +104,14 @@ static int mpt_debug_level; | |||
105 | static int mpt_set_debug_level(const char *val, struct kernel_param *kp); | 104 | static int mpt_set_debug_level(const char *val, struct kernel_param *kp); |
106 | module_param_call(mpt_debug_level, mpt_set_debug_level, param_get_int, | 105 | module_param_call(mpt_debug_level, mpt_set_debug_level, param_get_int, |
107 | &mpt_debug_level, 0600); | 106 | &mpt_debug_level, 0600); |
108 | MODULE_PARM_DESC(mpt_debug_level, " debug level - refer to mptdebug.h \ | 107 | MODULE_PARM_DESC(mpt_debug_level, |
109 | - (default=0)"); | 108 | " debug level - refer to mptdebug.h - (default=0)"); |
110 | 109 | ||
111 | int mpt_fwfault_debug; | 110 | int mpt_fwfault_debug; |
112 | EXPORT_SYMBOL(mpt_fwfault_debug); | 111 | EXPORT_SYMBOL(mpt_fwfault_debug); |
113 | module_param(mpt_fwfault_debug, int, 0600); | 112 | module_param(mpt_fwfault_debug, int, 0600); |
114 | MODULE_PARM_DESC(mpt_fwfault_debug, "Enable detection of Firmware fault" | 113 | MODULE_PARM_DESC(mpt_fwfault_debug, |
115 | " and halt Firmware on fault - (default=0)"); | 114 | "Enable detection of Firmware fault and halt Firmware on fault - (default=0)"); |
116 | |||
117 | 115 | ||
118 | static char MptCallbacksName[MPT_MAX_PROTOCOL_DRIVERS][50]; | 116 | static char MptCallbacksName[MPT_MAX_PROTOCOL_DRIVERS][50]; |
119 | 117 | ||
diff --git a/drivers/message/i2o/README.ioctl b/drivers/message/i2o/README.ioctl index 65c0c47aeb79..5fb195af43e2 100644 --- a/drivers/message/i2o/README.ioctl +++ b/drivers/message/i2o/README.ioctl | |||
@@ -110,7 +110,7 @@ V. Getting Logical Configuration Table | |||
110 | ENOBUFS Buffer not large enough. If this occurs, the required | 110 | ENOBUFS Buffer not large enough. If this occurs, the required |
111 | buffer length is written into *(lct->reslen) | 111 | buffer length is written into *(lct->reslen) |
112 | 112 | ||
113 | VI. Settting Parameters | 113 | VI. Setting Parameters |
114 | 114 | ||
115 | SYNOPSIS | 115 | SYNOPSIS |
116 | 116 | ||
diff --git a/drivers/misc/bh1780gli.c b/drivers/misc/bh1780gli.c index d07cd67c951c..82fe2d067827 100644 --- a/drivers/misc/bh1780gli.c +++ b/drivers/misc/bh1780gli.c | |||
@@ -49,8 +49,8 @@ static int bh1780_write(struct bh1780_data *ddata, u8 reg, u8 val, char *msg) | |||
49 | int ret = i2c_smbus_write_byte_data(ddata->client, reg, val); | 49 | int ret = i2c_smbus_write_byte_data(ddata->client, reg, val); |
50 | if (ret < 0) | 50 | if (ret < 0) |
51 | dev_err(&ddata->client->dev, | 51 | dev_err(&ddata->client->dev, |
52 | "i2c_smbus_write_byte_data failed error %d\ | 52 | "i2c_smbus_write_byte_data failed error %d Register (%s)\n", |
53 | Register (%s)\n", ret, msg); | 53 | ret, msg); |
54 | return ret; | 54 | return ret; |
55 | } | 55 | } |
56 | 56 | ||
@@ -59,8 +59,8 @@ static int bh1780_read(struct bh1780_data *ddata, u8 reg, char *msg) | |||
59 | int ret = i2c_smbus_read_byte_data(ddata->client, reg); | 59 | int ret = i2c_smbus_read_byte_data(ddata->client, reg); |
60 | if (ret < 0) | 60 | if (ret < 0) |
61 | dev_err(&ddata->client->dev, | 61 | dev_err(&ddata->client->dev, |
62 | "i2c_smbus_read_byte_data failed error %d\ | 62 | "i2c_smbus_read_byte_data failed error %d Register (%s)\n", |
63 | Register (%s)\n", ret, msg); | 63 | ret, msg); |
64 | return ret; | 64 | return ret; |
65 | } | 65 | } |
66 | 66 | ||
diff --git a/drivers/misc/cs5535-mfgpt.c b/drivers/misc/cs5535-mfgpt.c index d02d302ee6d5..e01e08c8c88b 100644 --- a/drivers/misc/cs5535-mfgpt.c +++ b/drivers/misc/cs5535-mfgpt.c | |||
@@ -329,7 +329,7 @@ done: | |||
329 | return err; | 329 | return err; |
330 | } | 330 | } |
331 | 331 | ||
332 | static struct platform_driver cs5535_mfgpt_drv = { | 332 | static struct platform_driver cs5535_mfgpt_driver = { |
333 | .driver = { | 333 | .driver = { |
334 | .name = DRV_NAME, | 334 | .name = DRV_NAME, |
335 | .owner = THIS_MODULE, | 335 | .owner = THIS_MODULE, |
@@ -340,7 +340,7 @@ static struct platform_driver cs5535_mfgpt_drv = { | |||
340 | 340 | ||
341 | static int __init cs5535_mfgpt_init(void) | 341 | static int __init cs5535_mfgpt_init(void) |
342 | { | 342 | { |
343 | return platform_driver_register(&cs5535_mfgpt_drv); | 343 | return platform_driver_register(&cs5535_mfgpt_driver); |
344 | } | 344 | } |
345 | 345 | ||
346 | module_init(cs5535_mfgpt_init); | 346 | module_init(cs5535_mfgpt_init); |
diff --git a/drivers/misc/ibmasm/ibmasmfs.c b/drivers/misc/ibmasm/ibmasmfs.c index d2d5d23416dd..89947723a27d 100644 --- a/drivers/misc/ibmasm/ibmasmfs.c +++ b/drivers/misc/ibmasm/ibmasmfs.c | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | /* | 30 | /* |
31 | * The IBMASM file virtual filesystem. It creates the following hierarchy | 31 | * The IBMASM file virtual filesystem. It creates the following hierarchy |
32 | * dymamically when mounted from user space: | 32 | * dynamically when mounted from user space: |
33 | * | 33 | * |
34 | * /ibmasm | 34 | * /ibmasm |
35 | * |-- 0 | 35 | * |-- 0 |
diff --git a/drivers/misc/spear13xx_pcie_gadget.c b/drivers/misc/spear13xx_pcie_gadget.c index ec3b8c911833..7aded90f9daa 100644 --- a/drivers/misc/spear13xx_pcie_gadget.c +++ b/drivers/misc/spear13xx_pcie_gadget.c | |||
@@ -787,8 +787,8 @@ static int __devinit spear_pcie_gadget_probe(struct platform_device *pdev) | |||
787 | 787 | ||
788 | status = request_irq(irq, spear_pcie_gadget_irq, 0, pdev->name, NULL); | 788 | status = request_irq(irq, spear_pcie_gadget_irq, 0, pdev->name, NULL); |
789 | if (status) { | 789 | if (status) { |
790 | dev_err(&pdev->dev, "pcie gadget interrupt IRQ%d already \ | 790 | dev_err(&pdev->dev, |
791 | claimed\n", irq); | 791 | "pcie gadget interrupt IRQ%d already claimed\n", irq); |
792 | goto err_iounmap; | 792 | goto err_iounmap; |
793 | } | 793 | } |
794 | 794 | ||
diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index ea3888b65d5d..aa8039f473c4 100644 --- a/drivers/mmc/host/atmel-mci.c +++ b/drivers/mmc/host/atmel-mci.c | |||
@@ -1899,5 +1899,5 @@ late_initcall(atmci_init); /* try to load after dma driver when built-in */ | |||
1899 | module_exit(atmci_exit); | 1899 | module_exit(atmci_exit); |
1900 | 1900 | ||
1901 | MODULE_DESCRIPTION("Atmel Multimedia Card Interface driver"); | 1901 | MODULE_DESCRIPTION("Atmel Multimedia Card Interface driver"); |
1902 | MODULE_AUTHOR("Haavard Skinnemoen <haavard.skinnemoen@atmel.com>"); | 1902 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
1903 | MODULE_LICENSE("GPL v2"); | 1903 | MODULE_LICENSE("GPL v2"); |
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index c5298d1ab744..cd5789ff3726 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c | |||
@@ -83,8 +83,9 @@ | |||
83 | #include "atl1.h" | 83 | #include "atl1.h" |
84 | 84 | ||
85 | #define ATLX_DRIVER_VERSION "2.1.3" | 85 | #define ATLX_DRIVER_VERSION "2.1.3" |
86 | MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, \ | 86 | MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, " |
87 | Chris Snook <csnook@redhat.com>, Jay Cliburn <jcliburn@gmail.com>"); | 87 | "Chris Snook <csnook@redhat.com>, " |
88 | "Jay Cliburn <jcliburn@gmail.com>"); | ||
88 | MODULE_LICENSE("GPL"); | 89 | MODULE_LICENSE("GPL"); |
89 | MODULE_VERSION(ATLX_DRIVER_VERSION); | 90 | MODULE_VERSION(ATLX_DRIVER_VERSION); |
90 | 91 | ||
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c index e54712b22c27..d11fbb2b95ff 100644 --- a/drivers/net/can/pch_can.c +++ b/drivers/net/can/pch_can.c | |||
@@ -653,7 +653,7 @@ static int pch_can_rx_normal(struct net_device *ndev, u32 obj_num, int quota) | |||
653 | u16 data_reg; | 653 | u16 data_reg; |
654 | 654 | ||
655 | do { | 655 | do { |
656 | /* Reading the messsage object from the Message RAM */ | 656 | /* Reading the message object from the Message RAM */ |
657 | iowrite32(PCH_CMASK_RX_TX_GET, &priv->regs->ifregs[0].cmask); | 657 | iowrite32(PCH_CMASK_RX_TX_GET, &priv->regs->ifregs[0].cmask); |
658 | pch_can_rw_msg_obj(&priv->regs->ifregs[0].creq, obj_num); | 658 | pch_can_rw_msg_obj(&priv->regs->ifregs[0].creq, obj_num); |
659 | 659 | ||
diff --git a/drivers/net/can/softing/softing_main.c b/drivers/net/can/softing/softing_main.c index 7a70709d5608..60a49e5a2a53 100644 --- a/drivers/net/can/softing/softing_main.c +++ b/drivers/net/can/softing/softing_main.c | |||
@@ -797,7 +797,7 @@ static __devinit int softing_pdev_probe(struct platform_device *pdev) | |||
797 | ret = -EINVAL; | 797 | ret = -EINVAL; |
798 | pres = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 798 | pres = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
799 | if (!pres) | 799 | if (!pres) |
800 | goto platform_resource_failed;; | 800 | goto platform_resource_failed; |
801 | card->dpram_phys = pres->start; | 801 | card->dpram_phys = pres->start; |
802 | card->dpram_size = pres->end - pres->start + 1; | 802 | card->dpram_size = pres->end - pres->start + 1; |
803 | card->dpram = ioremap_nocache(card->dpram_phys, card->dpram_size); | 803 | card->dpram = ioremap_nocache(card->dpram_phys, card->dpram_size); |
diff --git a/drivers/net/irda/ali-ircc.c b/drivers/net/irda/ali-ircc.c index 872183f29ec4..d532dde5120f 100644 --- a/drivers/net/irda/ali-ircc.c +++ b/drivers/net/irda/ali-ircc.c | |||
@@ -1800,7 +1800,7 @@ static int ali_ircc_dma_receive_complete(struct ali_ircc_cb *self) | |||
1800 | MessageCount = inb(iobase+ FIR_LSR)&0x07; | 1800 | MessageCount = inb(iobase+ FIR_LSR)&0x07; |
1801 | 1801 | ||
1802 | if (MessageCount > 0) | 1802 | if (MessageCount > 0) |
1803 | IRDA_DEBUG(0, "%s(), Messsage count = %d,\n", __func__ , MessageCount); | 1803 | IRDA_DEBUG(0, "%s(), Message count = %d,\n", __func__ , MessageCount); |
1804 | 1804 | ||
1805 | for (i=0; i<=MessageCount; i++) | 1805 | for (i=0; i<=MessageCount; i++) |
1806 | { | 1806 | { |
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 629bd2649c0c..6c6a02869dfc 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c | |||
@@ -1356,5 +1356,5 @@ module_exit(macb_exit); | |||
1356 | 1356 | ||
1357 | MODULE_LICENSE("GPL"); | 1357 | MODULE_LICENSE("GPL"); |
1358 | MODULE_DESCRIPTION("Atmel MACB Ethernet driver"); | 1358 | MODULE_DESCRIPTION("Atmel MACB Ethernet driver"); |
1359 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 1359 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
1360 | MODULE_ALIAS("platform:macb"); | 1360 | MODULE_ALIAS("platform:macb"); |
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index a9a5f5ed19c6..df0d2c8ecc09 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
@@ -7163,7 +7163,7 @@ static void do_s2io_card_down(struct s2io_nic *sp, int do_io) | |||
7163 | /* As per the HW requirement we need to replenish the | 7163 | /* As per the HW requirement we need to replenish the |
7164 | * receive buffer to avoid the ring bump. Since there is | 7164 | * receive buffer to avoid the ring bump. Since there is |
7165 | * no intention of processing the Rx frame at this pointwe are | 7165 | * no intention of processing the Rx frame at this pointwe are |
7166 | * just settting the ownership bit of rxd in Each Rx | 7166 | * just setting the ownership bit of rxd in Each Rx |
7167 | * ring to HW and set the appropriate buffer size | 7167 | * ring to HW and set the appropriate buffer size |
7168 | * based on the ring mode | 7168 | * based on the ring mode |
7169 | */ | 7169 | */ |
diff --git a/drivers/net/sgiseeq.c b/drivers/net/sgiseeq.c index dd03bf619988..54415c7b84a2 100644 --- a/drivers/net/sgiseeq.c +++ b/drivers/net/sgiseeq.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * sgiseeq.c: Seeq8003 ethernet driver for SGI machines. | 2 | * sgiseeq.c: Seeq8003 ethernet driver for SGI machines. |
3 | * | 3 | * |
4 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) | 4 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #undef DEBUG | 7 | #undef DEBUG |
diff --git a/drivers/net/sgiseeq.h b/drivers/net/sgiseeq.h index 523104de6830..2211e2987a8d 100644 --- a/drivers/net/sgiseeq.h +++ b/drivers/net/sgiseeq.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * sgiseeq.h: Defines for the Seeq8003 ethernet controller. | 2 | * sgiseeq.h: Defines for the Seeq8003 ethernet controller. |
3 | * | 3 | * |
4 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) | 4 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
5 | */ | 5 | */ |
6 | #ifndef _SGISEEQ_H | 6 | #ifndef _SGISEEQ_H |
7 | #define _SGISEEQ_H | 7 | #define _SGISEEQ_H |
diff --git a/drivers/net/ucc_geth_ethtool.c b/drivers/net/ucc_geth_ethtool.c index 537fbc0a4401..a97257f91a3d 100644 --- a/drivers/net/ucc_geth_ethtool.c +++ b/drivers/net/ucc_geth_ethtool.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * Author: Li Yang <leoli@freescale.com> | 6 | * Author: Li Yang <leoli@freescale.com> |
7 | * | 7 | * |
8 | * Limitation: | 8 | * Limitation: |
9 | * Can only get/set setttings of the first queue. | 9 | * Can only get/set settings of the first queue. |
10 | * Need to re-open the interface manually after changing some parameters. | 10 | * Need to re-open the interface manually after changing some parameters. |
11 | * | 11 | * |
12 | * This program is free software; you can redistribute it and/or modify it | 12 | * This program is free software; you can redistribute it and/or modify it |
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index e6dd24466965..ce395fe5de26 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c | |||
@@ -109,7 +109,7 @@ int usbnet_get_endpoints(struct usbnet *dev, struct usb_interface *intf) | |||
109 | 109 | ||
110 | /* take the first altsetting with in-bulk + out-bulk; | 110 | /* take the first altsetting with in-bulk + out-bulk; |
111 | * remember any status endpoint, just in case; | 111 | * remember any status endpoint, just in case; |
112 | * ignore other endpoints and altsetttings. | 112 | * ignore other endpoints and altsettings. |
113 | */ | 113 | */ |
114 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { | 114 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { |
115 | struct usb_host_endpoint *e; | 115 | struct usb_host_endpoint *e; |
diff --git a/drivers/net/wan/pc300_drv.c b/drivers/net/wan/pc300_drv.c index f875cfae3093..737b59f1a8dc 100644 --- a/drivers/net/wan/pc300_drv.c +++ b/drivers/net/wan/pc300_drv.c | |||
@@ -1445,7 +1445,7 @@ static void falc_update_stats(pc300_t * card, int ch) | |||
1445 | * Description: In the remote loopback mode the clock and data recovered | 1445 | * Description: In the remote loopback mode the clock and data recovered |
1446 | * from the line inputs RL1/2 or RDIP/RDIN are routed back | 1446 | * from the line inputs RL1/2 or RDIP/RDIN are routed back |
1447 | * to the line outputs XL1/2 or XDOP/XDON via the analog | 1447 | * to the line outputs XL1/2 or XDOP/XDON via the analog |
1448 | * transmitter. As in normal mode they are processsed by | 1448 | * transmitter. As in normal mode they are processed by |
1449 | * the synchronizer and then sent to the system interface. | 1449 | * the synchronizer and then sent to the system interface. |
1450 | *---------------------------------------------------------------------------- | 1450 | *---------------------------------------------------------------------------- |
1451 | */ | 1451 | */ |
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 4e5c7a11f04a..a70c512f05d2 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
@@ -242,9 +242,8 @@ static int airo_perm = 0555; | |||
242 | static int proc_perm = 0644; | 242 | static int proc_perm = 0644; |
243 | 243 | ||
244 | MODULE_AUTHOR("Benjamin Reed"); | 244 | MODULE_AUTHOR("Benjamin Reed"); |
245 | MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet \ | 245 | MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet cards. " |
246 | cards. Direct support for ISA/PCI/MPI cards and support \ | 246 | "Direct support for ISA/PCI/MPI cards and support for PCMCIA when used with airo_cs."); |
247 | for PCMCIA when used with airo_cs."); | ||
248 | MODULE_LICENSE("Dual BSD/GPL"); | 247 | MODULE_LICENSE("Dual BSD/GPL"); |
249 | MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350"); | 248 | MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350"); |
250 | module_param_array(io, int, NULL, 0); | 249 | module_param_array(io, int, NULL, 0); |
@@ -252,18 +251,20 @@ module_param_array(irq, int, NULL, 0); | |||
252 | module_param_array(rates, int, NULL, 0); | 251 | module_param_array(rates, int, NULL, 0); |
253 | module_param_array(ssids, charp, NULL, 0); | 252 | module_param_array(ssids, charp, NULL, 0); |
254 | module_param(auto_wep, int, 0); | 253 | module_param(auto_wep, int, 0); |
255 | MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through \ | 254 | MODULE_PARM_DESC(auto_wep, |
256 | the authentication options until an association is made. The value of \ | 255 | "If non-zero, the driver will keep looping through the authentication options until an association is made. " |
257 | auto_wep is number of the wep keys to check. A value of 2 will try using \ | 256 | "The value of auto_wep is number of the wep keys to check. " |
258 | the key at index 0 and index 1."); | 257 | "A value of 2 will try using the key at index 0 and index 1."); |
259 | module_param(aux_bap, int, 0); | 258 | module_param(aux_bap, int, 0); |
260 | MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode \ | 259 | MODULE_PARM_DESC(aux_bap, |
261 | than seems to work better for older cards with some older buses. Before \ | 260 | "If non-zero, the driver will switch into a mode that seems to work better for older cards with some older buses. " |
262 | switching it checks that the switch is needed."); | 261 | "Before switching it checks that the switch is needed."); |
263 | module_param(maxencrypt, int, 0); | 262 | module_param(maxencrypt, int, 0); |
264 | MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do \ | 263 | MODULE_PARM_DESC(maxencrypt, |
265 | encryption. Units are in 512kbs. Zero (default) means there is no limit. \ | 264 | "The maximum speed that the card can do encryption. " |
266 | Older cards used to be limited to 2mbs (4)."); | 265 | "Units are in 512kbs. " |
266 | "Zero (default) means there is no limit. " | ||
267 | "Older cards used to be limited to 2mbs (4)."); | ||
267 | module_param(adhoc, int, 0); | 268 | module_param(adhoc, int, 0); |
268 | MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode."); | 269 | MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode."); |
269 | module_param(probe, int, 0); | 270 | module_param(probe, int, 0); |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c index 1e220354e4be..d985841ff401 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | |||
@@ -3327,26 +3327,26 @@ static int ar9300_eeprom_restore_internal(struct ath_hw *ah, | |||
3327 | else | 3327 | else |
3328 | cptr = AR9300_BASE_ADDR; | 3328 | cptr = AR9300_BASE_ADDR; |
3329 | ath_dbg(common, ATH_DBG_EEPROM, | 3329 | ath_dbg(common, ATH_DBG_EEPROM, |
3330 | "Trying EEPROM accesss at Address 0x%04x\n", cptr); | 3330 | "Trying EEPROM access at Address 0x%04x\n", cptr); |
3331 | if (ar9300_check_eeprom_header(ah, read, cptr)) | 3331 | if (ar9300_check_eeprom_header(ah, read, cptr)) |
3332 | goto found; | 3332 | goto found; |
3333 | 3333 | ||
3334 | cptr = AR9300_BASE_ADDR_512; | 3334 | cptr = AR9300_BASE_ADDR_512; |
3335 | ath_dbg(common, ATH_DBG_EEPROM, | 3335 | ath_dbg(common, ATH_DBG_EEPROM, |
3336 | "Trying EEPROM accesss at Address 0x%04x\n", cptr); | 3336 | "Trying EEPROM access at Address 0x%04x\n", cptr); |
3337 | if (ar9300_check_eeprom_header(ah, read, cptr)) | 3337 | if (ar9300_check_eeprom_header(ah, read, cptr)) |
3338 | goto found; | 3338 | goto found; |
3339 | 3339 | ||
3340 | read = ar9300_read_otp; | 3340 | read = ar9300_read_otp; |
3341 | cptr = AR9300_BASE_ADDR; | 3341 | cptr = AR9300_BASE_ADDR; |
3342 | ath_dbg(common, ATH_DBG_EEPROM, | 3342 | ath_dbg(common, ATH_DBG_EEPROM, |
3343 | "Trying OTP accesss at Address 0x%04x\n", cptr); | 3343 | "Trying OTP access at Address 0x%04x\n", cptr); |
3344 | if (ar9300_check_eeprom_header(ah, read, cptr)) | 3344 | if (ar9300_check_eeprom_header(ah, read, cptr)) |
3345 | goto found; | 3345 | goto found; |
3346 | 3346 | ||
3347 | cptr = AR9300_BASE_ADDR_512; | 3347 | cptr = AR9300_BASE_ADDR_512; |
3348 | ath_dbg(common, ATH_DBG_EEPROM, | 3348 | ath_dbg(common, ATH_DBG_EEPROM, |
3349 | "Trying OTP accesss at Address 0x%04x\n", cptr); | 3349 | "Trying OTP access at Address 0x%04x\n", cptr); |
3350 | if (ar9300_check_eeprom_header(ah, read, cptr)) | 3350 | if (ar9300_check_eeprom_header(ah, read, cptr)) |
3351 | goto found; | 3351 | goto found; |
3352 | 3352 | ||
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h index 229f4388f790..ebc93c1bb5e7 100644 --- a/drivers/net/wireless/b43/b43.h +++ b/drivers/net/wireless/b43/b43.h | |||
@@ -648,8 +648,8 @@ struct b43_request_fw_context { | |||
648 | char errors[B43_NR_FWTYPES][128]; | 648 | char errors[B43_NR_FWTYPES][128]; |
649 | /* Temporary buffer for storing the firmware name. */ | 649 | /* Temporary buffer for storing the firmware name. */ |
650 | char fwname[64]; | 650 | char fwname[64]; |
651 | /* A fatal error occurred while requesting. Firmware reqest | 651 | /* A fatal error occurred while requesting. Firmware request |
652 | * can not continue, as any other reqest will also fail. */ | 652 | * can not continue, as any other request will also fail. */ |
653 | int fatal_failure; | 653 | int fatal_failure; |
654 | }; | 654 | }; |
655 | 655 | ||
diff --git a/drivers/net/wireless/ipw2x00/ipw2200.c b/drivers/net/wireless/ipw2x00/ipw2200.c index 42c3fe37af64..87813c33bdc2 100644 --- a/drivers/net/wireless/ipw2x00/ipw2200.c +++ b/drivers/net/wireless/ipw2x00/ipw2200.c | |||
@@ -7430,7 +7430,7 @@ static int ipw_associate_network(struct ipw_priv *priv, | |||
7430 | priv->assoc_request.capability &= | 7430 | priv->assoc_request.capability &= |
7431 | ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME); | 7431 | ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME); |
7432 | 7432 | ||
7433 | IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, " | 7433 | IPW_DEBUG_ASSOC("%ssociation attempt: '%s', channel %d, " |
7434 | "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n", | 7434 | "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n", |
7435 | roaming ? "Rea" : "A", | 7435 | roaming ? "Rea" : "A", |
7436 | print_ssid(ssid, priv->essid, priv->essid_len), | 7436 | print_ssid(ssid, priv->essid, priv->essid_len), |
diff --git a/drivers/net/wireless/iwlegacy/iwl-4965-calib.c b/drivers/net/wireless/iwlegacy/iwl-4965-calib.c index 81d6a25eb04f..162d877e6869 100644 --- a/drivers/net/wireless/iwlegacy/iwl-4965-calib.c +++ b/drivers/net/wireless/iwlegacy/iwl-4965-calib.c | |||
@@ -713,8 +713,8 @@ iwl4965_find_disconn_antenna(struct iwl_priv *priv, u32* average_sig, | |||
713 | iwl4965_find_first_chain(priv->cfg->valid_tx_ant); | 713 | iwl4965_find_first_chain(priv->cfg->valid_tx_ant); |
714 | data->disconn_array[first_chain] = 0; | 714 | data->disconn_array[first_chain] = 0; |
715 | active_chains |= BIT(first_chain); | 715 | active_chains |= BIT(first_chain); |
716 | IWL_DEBUG_CALIB(priv, "All Tx chains are disconnected \ | 716 | IWL_DEBUG_CALIB(priv, |
717 | W/A - declare %d as connected\n", | 717 | "All Tx chains are disconnected W/A - declare %d as connected\n", |
718 | first_chain); | 718 | first_chain); |
719 | break; | 719 | break; |
720 | } | 720 | } |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-calib.c b/drivers/net/wireless/iwlwifi/iwl-agn-calib.c index 0f6bb9b2e642..39d1e47a0978 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-calib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-calib.c | |||
@@ -817,8 +817,8 @@ static void iwl_find_disconn_antenna(struct iwl_priv *priv, u32* average_sig, | |||
817 | find_first_chain(priv->cfg->valid_tx_ant); | 817 | find_first_chain(priv->cfg->valid_tx_ant); |
818 | data->disconn_array[first_chain] = 0; | 818 | data->disconn_array[first_chain] = 0; |
819 | active_chains |= BIT(first_chain); | 819 | active_chains |= BIT(first_chain); |
820 | IWL_DEBUG_CALIB(priv, "All Tx chains are disconnected \ | 820 | IWL_DEBUG_CALIB(priv, |
821 | W/A - declare %d as connected\n", | 821 | "All Tx chains are disconnected W/A - declare %d as connected\n", |
822 | first_chain); | 822 | first_chain); |
823 | break; | 823 | break; |
824 | } | 824 | } |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 3ecc3198d9bf..08e3cae4fa5a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -1766,7 +1766,7 @@ static const char *desc_lookup(u32 num) | |||
1766 | max = ARRAY_SIZE(advanced_lookup) - 1; | 1766 | max = ARRAY_SIZE(advanced_lookup) - 1; |
1767 | for (i = 0; i < max; i++) { | 1767 | for (i = 0; i < max; i++) { |
1768 | if (advanced_lookup[i].num == num) | 1768 | if (advanced_lookup[i].num == num) |
1769 | break;; | 1769 | break; |
1770 | } | 1770 | } |
1771 | return advanced_lookup[i].name; | 1771 | return advanced_lookup[i].name; |
1772 | } | 1772 | } |
diff --git a/drivers/net/wireless/rtlwifi/core.c b/drivers/net/wireless/rtlwifi/core.c index fc89cd8c8320..d2ec2535aa3c 100644 --- a/drivers/net/wireless/rtlwifi/core.c +++ b/drivers/net/wireless/rtlwifi/core.c | |||
@@ -783,7 +783,7 @@ static void rtl_op_set_tsf(struct ieee80211_hw *hw, u64 tsf) | |||
783 | { | 783 | { |
784 | struct rtl_priv *rtlpriv = rtl_priv(hw); | 784 | struct rtl_priv *rtlpriv = rtl_priv(hw); |
785 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); | 785 | struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); |
786 | u8 bibss = (mac->opmode == NL80211_IFTYPE_ADHOC) ? 1 : 0;; | 786 | u8 bibss = (mac->opmode == NL80211_IFTYPE_ADHOC) ? 1 : 0; |
787 | 787 | ||
788 | mac->tsf = tsf; | 788 | mac->tsf = tsf; |
789 | rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_CORRECT_TSF, (u8 *) (&bibss)); | 789 | rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_CORRECT_TSF, (u8 *) (&bibss)); |
diff --git a/drivers/net/wireless/rtlwifi/rtl8192ce/hw.c b/drivers/net/wireless/rtlwifi/rtl8192ce/hw.c index 4a56138eb33c..defb4370cf74 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192ce/hw.c +++ b/drivers/net/wireless/rtlwifi/rtl8192ce/hw.c | |||
@@ -697,7 +697,7 @@ static bool _rtl92ce_init_mac(struct ieee80211_hw *hw) | |||
697 | rtl_write_word(rtlpriv, REG_CR, 0x2ff); | 697 | rtl_write_word(rtlpriv, REG_CR, 0x2ff); |
698 | 698 | ||
699 | if (_rtl92ce_llt_table_init(hw) == false) | 699 | if (_rtl92ce_llt_table_init(hw) == false) |
700 | return false;; | 700 | return false; |
701 | 701 | ||
702 | rtl_write_dword(rtlpriv, REG_HISR, 0xffffffff); | 702 | rtl_write_dword(rtlpriv, REG_HISR, 0xffffffff); |
703 | rtl_write_byte(rtlpriv, REG_HISRE, 0xff); | 703 | rtl_write_byte(rtlpriv, REG_HISRE, 0xff); |
@@ -754,7 +754,7 @@ static bool _rtl92ce_init_mac(struct ieee80211_hw *hw) | |||
754 | 754 | ||
755 | rtl_write_dword(rtlpriv, REG_MCUTST_1, 0x0); | 755 | rtl_write_dword(rtlpriv, REG_MCUTST_1, 0x0); |
756 | 756 | ||
757 | return true;; | 757 | return true; |
758 | } | 758 | } |
759 | 759 | ||
760 | static void _rtl92ce_hw_configure(struct ieee80211_hw *hw) | 760 | static void _rtl92ce_hw_configure(struct ieee80211_hw *hw) |
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig index 0485e394712a..485c09eef424 100644 --- a/drivers/platform/x86/Kconfig +++ b/drivers/platform/x86/Kconfig | |||
@@ -111,7 +111,7 @@ config DELL_WMI_AIO | |||
111 | All-In-One machines. | 111 | All-In-One machines. |
112 | 112 | ||
113 | To compile this driver as a module, choose M here: the module will | 113 | To compile this driver as a module, choose M here: the module will |
114 | be called dell-wmi. | 114 | be called dell-wmi-aio. |
115 | 115 | ||
116 | 116 | ||
117 | config FUJITSU_LAPTOP | 117 | config FUJITSU_LAPTOP |
diff --git a/drivers/power/intel_mid_battery.c b/drivers/power/intel_mid_battery.c index bce3a01da2f0..cffcb7c00b00 100644 --- a/drivers/power/intel_mid_battery.c +++ b/drivers/power/intel_mid_battery.c | |||
@@ -522,7 +522,7 @@ static int pmic_battery_set_charger(struct pmic_power_module_info *pbi, | |||
522 | if (retval) { | 522 | if (retval) { |
523 | dev_warn(pbi->dev, "%s(): ipc pmic read failed\n", | 523 | dev_warn(pbi->dev, "%s(): ipc pmic read failed\n", |
524 | __func__); | 524 | __func__); |
525 | return retval;; | 525 | return retval; |
526 | } | 526 | } |
527 | 527 | ||
528 | return 0; | 528 | return 0; |
diff --git a/drivers/regulator/max8998.c b/drivers/regulator/max8998.c index 43410266f993..f57e9c42fdb4 100644 --- a/drivers/regulator/max8998.c +++ b/drivers/regulator/max8998.c | |||
@@ -405,8 +405,8 @@ static int max8998_set_voltage_buck(struct regulator_dev *rdev, | |||
405 | switch (buck) { | 405 | switch (buck) { |
406 | case MAX8998_BUCK1: | 406 | case MAX8998_BUCK1: |
407 | dev_dbg(max8998->dev, | 407 | dev_dbg(max8998->dev, |
408 | "BUCK1, i:%d, buck1_vol1:%d, buck1_vol2:%d\n\ | 408 | "BUCK1, i:%d, buck1_vol1:%d, buck1_vol2:%d\n" |
409 | buck1_vol3:%d, buck1_vol4:%d\n", | 409 | "buck1_vol3:%d, buck1_vol4:%d\n", |
410 | i, max8998->buck1_vol[0], max8998->buck1_vol[1], | 410 | i, max8998->buck1_vol[0], max8998->buck1_vol[1], |
411 | max8998->buck1_vol[2], max8998->buck1_vol[3]); | 411 | max8998->buck1_vol[2], max8998->buck1_vol[3]); |
412 | 412 | ||
diff --git a/drivers/regulator/mc13783-regulator.c b/drivers/regulator/mc13783-regulator.c index 23249cb0a8bd..b8a00c7fa441 100644 --- a/drivers/regulator/mc13783-regulator.c +++ b/drivers/regulator/mc13783-regulator.c | |||
@@ -341,7 +341,7 @@ static int __devinit mc13783_regulator_probe(struct platform_device *pdev) | |||
341 | struct mc13783_regulator_init_data *init_data; | 341 | struct mc13783_regulator_init_data *init_data; |
342 | int i, ret; | 342 | int i, ret; |
343 | 343 | ||
344 | dev_dbg(&pdev->dev, "mc13783_regulator_probe id %d\n", pdev->id); | 344 | dev_dbg(&pdev->dev, "%s id %d\n", __func__, pdev->id); |
345 | 345 | ||
346 | priv = kzalloc(sizeof(*priv) + | 346 | priv = kzalloc(sizeof(*priv) + |
347 | pdata->num_regulators * sizeof(priv->regulators[0]), | 347 | pdata->num_regulators * sizeof(priv->regulators[0]), |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.c b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.c index 078ed600f47a..232aff1fe784 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.c +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation | 2 | * Aic7xxx SCSI host adapter firmware assembler symbol table implementation |
3 | * | 3 | * |
4 | * Copyright (c) 1997 Justin T. Gibbs. | 4 | * Copyright (c) 1997 Justin T. Gibbs. |
5 | * Copyright (c) 2002 Adaptec Inc. | 5 | * Copyright (c) 2002 Adaptec Inc. |
diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h index 2ba73ae7c777..34bbcad7f83f 100644 --- a/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h +++ b/drivers/scsi/aic7xxx/aicasm/aicasm_symbol.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Aic7xxx SCSI host adapter firmware asssembler symbol table definitions | 2 | * Aic7xxx SCSI host adapter firmware assembler symbol table definitions |
3 | * | 3 | * |
4 | * Copyright (c) 1997 Justin T. Gibbs. | 4 | * Copyright (c) 1997 Justin T. Gibbs. |
5 | * Copyright (c) 2002 Adaptec Inc. | 5 | * Copyright (c) 2002 Adaptec Inc. |
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c index cea9b275965c..94b9a07845d5 100644 --- a/drivers/scsi/be2iscsi/be_main.c +++ b/drivers/scsi/be2iscsi/be_main.c | |||
@@ -619,7 +619,7 @@ static void beiscsi_get_params(struct beiscsi_hba *phba) | |||
619 | + BE2_NOPOUT_REQ)); | 619 | + BE2_NOPOUT_REQ)); |
620 | phba->params.cxns_per_ctrl = phba->fw_config.iscsi_cid_count; | 620 | phba->params.cxns_per_ctrl = phba->fw_config.iscsi_cid_count; |
621 | phba->params.asyncpdus_per_ctrl = phba->fw_config.iscsi_cid_count * 2; | 621 | phba->params.asyncpdus_per_ctrl = phba->fw_config.iscsi_cid_count * 2; |
622 | phba->params.icds_per_ctrl = phba->fw_config.iscsi_icd_count;; | 622 | phba->params.icds_per_ctrl = phba->fw_config.iscsi_icd_count; |
623 | phba->params.num_sge_per_io = BE2_SGE; | 623 | phba->params.num_sge_per_io = BE2_SGE; |
624 | phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ; | 624 | phba->params.defpdu_hdr_sz = BE2_DEFPDU_HDR_SZ; |
625 | phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ; | 625 | phba->params.defpdu_data_sz = BE2_DEFPDU_DATA_SZ; |
@@ -782,7 +782,7 @@ static irqreturn_t be_isr(int irq, void *dev_id) | |||
782 | int isr; | 782 | int isr; |
783 | 783 | ||
784 | phba = dev_id; | 784 | phba = dev_id; |
785 | ctrl = &phba->ctrl;; | 785 | ctrl = &phba->ctrl; |
786 | isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET + | 786 | isr = ioread32(ctrl->csr + CEV_ISR0_OFFSET + |
787 | (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE)); | 787 | (PCI_FUNC(ctrl->pdev->devfn) * CEV_ISR_SIZE)); |
788 | if (!isr) | 788 | if (!isr) |
diff --git a/drivers/scsi/constants.c b/drivers/scsi/constants.c index 60d2ef291646..450e011f981a 100644 --- a/drivers/scsi/constants.c +++ b/drivers/scsi/constants.c | |||
@@ -34,7 +34,7 @@ | |||
34 | static const char * cdb_byte0_names[] = { | 34 | static const char * cdb_byte0_names[] = { |
35 | /* 00-03 */ "Test Unit Ready", "Rezero Unit/Rewind", NULL, "Request Sense", | 35 | /* 00-03 */ "Test Unit Ready", "Rezero Unit/Rewind", NULL, "Request Sense", |
36 | /* 04-07 */ "Format Unit/Medium", "Read Block Limits", NULL, | 36 | /* 04-07 */ "Format Unit/Medium", "Read Block Limits", NULL, |
37 | "Reasssign Blocks", | 37 | "Reassign Blocks", |
38 | /* 08-0d */ "Read(6)", NULL, "Write(6)", "Seek(6)", NULL, NULL, | 38 | /* 08-0d */ "Read(6)", NULL, "Write(6)", "Seek(6)", NULL, NULL, |
39 | /* 0e-12 */ NULL, "Read Reverse", "Write Filemarks", "Space", "Inquiry", | 39 | /* 0e-12 */ NULL, "Read Reverse", "Write Filemarks", "Space", "Inquiry", |
40 | /* 13-16 */ "Verify(6)", "Recover Buffered Data", "Mode Select(6)", | 40 | /* 13-16 */ "Verify(6)", "Recover Buffered Data", "Mode Select(6)", |
diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c index 9a1af1d6071a..394ed9e79fd4 100644 --- a/drivers/scsi/esp_scsi.c +++ b/drivers/scsi/esp_scsi.c | |||
@@ -1058,7 +1058,7 @@ static struct esp_cmd_entry *esp_reconnect_with_tag(struct esp *esp, | |||
1058 | esp->ops->send_dma_cmd(esp, esp->command_block_dma, | 1058 | esp->ops->send_dma_cmd(esp, esp->command_block_dma, |
1059 | 2, 2, 1, ESP_CMD_DMA | ESP_CMD_TI); | 1059 | 2, 2, 1, ESP_CMD_DMA | ESP_CMD_TI); |
1060 | 1060 | ||
1061 | /* ACK the msssage. */ | 1061 | /* ACK the message. */ |
1062 | scsi_esp_cmd(esp, ESP_CMD_MOK); | 1062 | scsi_esp_cmd(esp, ESP_CMD_MOK); |
1063 | 1063 | ||
1064 | for (i = 0; i < ESP_RESELECT_TAG_LIMIT; i++) { | 1064 | for (i = 0; i < ESP_RESELECT_TAG_LIMIT; i++) { |
diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c index 17d789325f40..8dcbf8fff673 100644 --- a/drivers/scsi/lpfc/lpfc_attr.c +++ b/drivers/scsi/lpfc/lpfc_attr.c | |||
@@ -4532,7 +4532,7 @@ lpfc_set_vport_symbolic_name(struct fc_vport *fc_vport) | |||
4532 | * | 4532 | * |
4533 | * This function is called by the lpfc_get_cfgparam() routine to set the | 4533 | * This function is called by the lpfc_get_cfgparam() routine to set the |
4534 | * module lpfc_log_verbose into the @phba cfg_log_verbose for use with | 4534 | * module lpfc_log_verbose into the @phba cfg_log_verbose for use with |
4535 | * log messsage according to the module's lpfc_log_verbose parameter setting | 4535 | * log message according to the module's lpfc_log_verbose parameter setting |
4536 | * before hba port or vport created. | 4536 | * before hba port or vport created. |
4537 | **/ | 4537 | **/ |
4538 | static void | 4538 | static void |
diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c index 37e2a1272f86..853e5042f39c 100644 --- a/drivers/scsi/lpfc/lpfc_bsg.c +++ b/drivers/scsi/lpfc/lpfc_bsg.c | |||
@@ -598,7 +598,7 @@ lpfc_bsg_rport_els(struct fc_bsg_job *job) | |||
598 | dd_data->context_un.iocb.cmdiocbq = cmdiocbq; | 598 | dd_data->context_un.iocb.cmdiocbq = cmdiocbq; |
599 | dd_data->context_un.iocb.rspiocbq = rspiocbq; | 599 | dd_data->context_un.iocb.rspiocbq = rspiocbq; |
600 | dd_data->context_un.iocb.set_job = job; | 600 | dd_data->context_un.iocb.set_job = job; |
601 | dd_data->context_un.iocb.bmp = NULL;; | 601 | dd_data->context_un.iocb.bmp = NULL; |
602 | dd_data->context_un.iocb.ndlp = ndlp; | 602 | dd_data->context_un.iocb.ndlp = ndlp; |
603 | 603 | ||
604 | if (phba->cfg_poll & DISABLE_FCP_RING_INT) { | 604 | if (phba->cfg_poll & DISABLE_FCP_RING_INT) { |
diff --git a/drivers/scsi/lpfc/lpfc_hw.h b/drivers/scsi/lpfc/lpfc_hw.h index 95f11ed79463..86b6f7e6686a 100644 --- a/drivers/scsi/lpfc/lpfc_hw.h +++ b/drivers/scsi/lpfc/lpfc_hw.h | |||
@@ -1002,7 +1002,7 @@ typedef struct _ELS_PKT { /* Structure is in Big Endian format */ | |||
1002 | #define SLI_MGMT_GRPL 0x102 /* Get registered Port list */ | 1002 | #define SLI_MGMT_GRPL 0x102 /* Get registered Port list */ |
1003 | #define SLI_MGMT_GPAT 0x110 /* Get Port attributes */ | 1003 | #define SLI_MGMT_GPAT 0x110 /* Get Port attributes */ |
1004 | #define SLI_MGMT_RHBA 0x200 /* Register HBA */ | 1004 | #define SLI_MGMT_RHBA 0x200 /* Register HBA */ |
1005 | #define SLI_MGMT_RHAT 0x201 /* Register HBA atttributes */ | 1005 | #define SLI_MGMT_RHAT 0x201 /* Register HBA attributes */ |
1006 | #define SLI_MGMT_RPRT 0x210 /* Register Port */ | 1006 | #define SLI_MGMT_RPRT 0x210 /* Register Port */ |
1007 | #define SLI_MGMT_RPA 0x211 /* Register Port attributes */ | 1007 | #define SLI_MGMT_RPA 0x211 /* Register Port attributes */ |
1008 | #define SLI_MGMT_DHBA 0x300 /* De-register HBA */ | 1008 | #define SLI_MGMT_DHBA 0x300 /* De-register HBA */ |
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c index 837d272cb2d6..fd5835e1c039 100644 --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c | |||
@@ -3040,7 +3040,7 @@ lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, | |||
3040 | list_add_tail(&rspiocbp->list, &(pring->iocb_continueq)); | 3040 | list_add_tail(&rspiocbp->list, &(pring->iocb_continueq)); |
3041 | pring->iocb_continueq_cnt++; | 3041 | pring->iocb_continueq_cnt++; |
3042 | 3042 | ||
3043 | /* Now, determine whetehr the list is completed for processing */ | 3043 | /* Now, determine whether the list is completed for processing */ |
3044 | irsp = &rspiocbp->iocb; | 3044 | irsp = &rspiocbp->iocb; |
3045 | if (irsp->ulpLe) { | 3045 | if (irsp->ulpLe) { |
3046 | /* | 3046 | /* |
diff --git a/drivers/scsi/nsp32_debug.c b/drivers/scsi/nsp32_debug.c index 2fb3fb58858d..58806f432a16 100644 --- a/drivers/scsi/nsp32_debug.c +++ b/drivers/scsi/nsp32_debug.c | |||
@@ -13,7 +13,7 @@ static const char unknown[] = "UNKNOWN"; | |||
13 | 13 | ||
14 | static const char * group_0_commands[] = { | 14 | static const char * group_0_commands[] = { |
15 | /* 00-03 */ "Test Unit Ready", "Rezero Unit", unknown, "Request Sense", | 15 | /* 00-03 */ "Test Unit Ready", "Rezero Unit", unknown, "Request Sense", |
16 | /* 04-07 */ "Format Unit", "Read Block Limits", unknown, "Reasssign Blocks", | 16 | /* 04-07 */ "Format Unit", "Read Block Limits", unknown, "Reassign Blocks", |
17 | /* 08-0d */ "Read (6)", unknown, "Write (6)", "Seek (6)", unknown, unknown, | 17 | /* 08-0d */ "Read (6)", unknown, "Write (6)", "Seek (6)", unknown, unknown, |
18 | /* 0e-12 */ unknown, "Read Reverse", "Write Filemarks", "Space", "Inquiry", | 18 | /* 0e-12 */ unknown, "Read Reverse", "Write Filemarks", "Space", "Inquiry", |
19 | /* 13-16 */ unknown, "Recover Buffered Data", "Mode Select", "Reserve", | 19 | /* 13-16 */ unknown, "Recover Buffered Data", "Mode Select", "Reserve", |
diff --git a/drivers/scsi/pcmcia/nsp_debug.c b/drivers/scsi/pcmcia/nsp_debug.c index 3c6ef64fcbff..6aa7d269d3b3 100644 --- a/drivers/scsi/pcmcia/nsp_debug.c +++ b/drivers/scsi/pcmcia/nsp_debug.c | |||
@@ -15,7 +15,7 @@ static const char unknown[] = "UNKNOWN"; | |||
15 | 15 | ||
16 | static const char * group_0_commands[] = { | 16 | static const char * group_0_commands[] = { |
17 | /* 00-03 */ "Test Unit Ready", "Rezero Unit", unknown, "Request Sense", | 17 | /* 00-03 */ "Test Unit Ready", "Rezero Unit", unknown, "Request Sense", |
18 | /* 04-07 */ "Format Unit", "Read Block Limits", unknown, "Reasssign Blocks", | 18 | /* 04-07 */ "Format Unit", "Read Block Limits", unknown, "Reassign Blocks", |
19 | /* 08-0d */ "Read (6)", unknown, "Write (6)", "Seek (6)", unknown, unknown, | 19 | /* 08-0d */ "Read (6)", unknown, "Write (6)", "Seek (6)", unknown, unknown, |
20 | /* 0e-12 */ unknown, "Read Reverse", "Write Filemarks", "Space", "Inquiry", | 20 | /* 0e-12 */ unknown, "Read Reverse", "Write Filemarks", "Space", "Inquiry", |
21 | /* 13-16 */ unknown, "Recover Buffered Data", "Mode Select", "Reserve", | 21 | /* 13-16 */ unknown, "Recover Buffered Data", "Mode Select", "Reserve", |
diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c index 002360da01e3..172cefb6deb9 100644 --- a/drivers/scsi/pm8001/pm8001_init.c +++ b/drivers/scsi/pm8001/pm8001_init.c | |||
@@ -160,7 +160,7 @@ static void pm8001_free(struct pm8001_hba_info *pm8001_ha) | |||
160 | static void pm8001_tasklet(unsigned long opaque) | 160 | static void pm8001_tasklet(unsigned long opaque) |
161 | { | 161 | { |
162 | struct pm8001_hba_info *pm8001_ha; | 162 | struct pm8001_hba_info *pm8001_ha; |
163 | pm8001_ha = (struct pm8001_hba_info *)opaque;; | 163 | pm8001_ha = (struct pm8001_hba_info *)opaque; |
164 | if (unlikely(!pm8001_ha)) | 164 | if (unlikely(!pm8001_ha)) |
165 | BUG_ON(1); | 165 | BUG_ON(1); |
166 | PM8001_CHIP_DISP->isr(pm8001_ha); | 166 | PM8001_CHIP_DISP->isr(pm8001_ha); |
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index 9c0f0e3389eb..1b60a95adb50 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -1060,7 +1060,7 @@ qla2x00_ct_entry(scsi_qla_host_t *vha, struct req_que *req, | |||
1060 | } | 1060 | } |
1061 | DEBUG2(qla2x00_dump_buffer((uint8_t *)pkt, sizeof(*pkt))); | 1061 | DEBUG2(qla2x00_dump_buffer((uint8_t *)pkt, sizeof(*pkt))); |
1062 | } else { | 1062 | } else { |
1063 | bsg_job->reply->result = DID_OK << 16;; | 1063 | bsg_job->reply->result = DID_OK << 16; |
1064 | bsg_job->reply->reply_payload_rcv_len = | 1064 | bsg_job->reply->reply_payload_rcv_len = |
1065 | bsg_job->reply_payload.payload_len; | 1065 | bsg_job->reply_payload.payload_len; |
1066 | bsg_job->reply_len = 0; | 1066 | bsg_job->reply_len = 0; |
@@ -1155,7 +1155,7 @@ qla24xx_els_ct_entry(scsi_qla_host_t *vha, struct req_que *req, | |||
1155 | DEBUG2(qla2x00_dump_buffer((uint8_t *)pkt, sizeof(*pkt))); | 1155 | DEBUG2(qla2x00_dump_buffer((uint8_t *)pkt, sizeof(*pkt))); |
1156 | } | 1156 | } |
1157 | else { | 1157 | else { |
1158 | bsg_job->reply->result = DID_OK << 16;; | 1158 | bsg_job->reply->result = DID_OK << 16; |
1159 | bsg_job->reply->reply_payload_rcv_len = bsg_job->reply_payload.payload_len; | 1159 | bsg_job->reply->reply_payload_rcv_len = bsg_job->reply_payload.payload_len; |
1160 | bsg_job->reply_len = 0; | 1160 | bsg_job->reply_len = 0; |
1161 | } | 1161 | } |
diff --git a/drivers/scsi/qla4xxx/ql4_mbx.c b/drivers/scsi/qla4xxx/ql4_mbx.c index f9d81c8372c3..d78b58dc5011 100644 --- a/drivers/scsi/qla4xxx/ql4_mbx.c +++ b/drivers/scsi/qla4xxx/ql4_mbx.c | |||
@@ -19,7 +19,7 @@ | |||
19 | * @mbx_cmd: data pointer for mailbox in registers. | 19 | * @mbx_cmd: data pointer for mailbox in registers. |
20 | * @mbx_sts: data pointer for mailbox out registers. | 20 | * @mbx_sts: data pointer for mailbox out registers. |
21 | * | 21 | * |
22 | * This routine isssue mailbox commands and waits for completion. | 22 | * This routine issue mailbox commands and waits for completion. |
23 | * If outCount is 0, this routine completes successfully WITHOUT waiting | 23 | * If outCount is 0, this routine completes successfully WITHOUT waiting |
24 | * for the mailbox command to complete. | 24 | * for the mailbox command to complete. |
25 | **/ | 25 | **/ |
diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c index fef0e3c75b16..3a9d85ca6047 100644 --- a/drivers/scsi/sgiwd93.c +++ b/drivers/scsi/sgiwd93.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * License. See the file "COPYING" in the main directory of this archive | 3 | * License. See the file "COPYING" in the main directory of this archive |
4 | * for more details. | 4 | * for more details. |
5 | * | 5 | * |
6 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) | 6 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
7 | * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu) | 7 | * Copyright (C) 1999 Andrew R. Baker (andrewb@uab.edu) |
8 | * Copyright (C) 2001 Florian Lohoff (flo@rfc822.org) | 8 | * Copyright (C) 2001 Florian Lohoff (flo@rfc822.org) |
9 | * Copyright (C) 2003, 07 Ralf Baechle (ralf@linux-mips.org) | 9 | * Copyright (C) 2003, 07 Ralf Baechle (ralf@linux-mips.org) |
diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index 1a478bf88c9d..08711e9202ab 100644 --- a/drivers/spi/atmel_spi.c +++ b/drivers/spi/atmel_spi.c | |||
@@ -935,6 +935,6 @@ static void __exit atmel_spi_exit(void) | |||
935 | module_exit(atmel_spi_exit); | 935 | module_exit(atmel_spi_exit); |
936 | 936 | ||
937 | MODULE_DESCRIPTION("Atmel AT32/AT91 SPI Controller driver"); | 937 | MODULE_DESCRIPTION("Atmel AT32/AT91 SPI Controller driver"); |
938 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 938 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
939 | MODULE_LICENSE("GPL"); | 939 | MODULE_LICENSE("GPL"); |
940 | MODULE_ALIAS("platform:atmel_spi"); | 940 | MODULE_ALIAS("platform:atmel_spi"); |
diff --git a/drivers/target/target_core_alua.c b/drivers/target/target_core_alua.c index 30cbb743d9ba..47abb42d9c36 100644 --- a/drivers/target/target_core_alua.c +++ b/drivers/target/target_core_alua.c | |||
@@ -1036,7 +1036,7 @@ core_alua_allocate_lu_gp(const char *name, int def_group) | |||
1036 | lu_gp = kmem_cache_zalloc(t10_alua_lu_gp_cache, GFP_KERNEL); | 1036 | lu_gp = kmem_cache_zalloc(t10_alua_lu_gp_cache, GFP_KERNEL); |
1037 | if (!(lu_gp)) { | 1037 | if (!(lu_gp)) { |
1038 | printk(KERN_ERR "Unable to allocate struct t10_alua_lu_gp\n"); | 1038 | printk(KERN_ERR "Unable to allocate struct t10_alua_lu_gp\n"); |
1039 | return ERR_PTR(-ENOMEM);; | 1039 | return ERR_PTR(-ENOMEM); |
1040 | } | 1040 | } |
1041 | INIT_LIST_HEAD(&lu_gp->lu_gp_list); | 1041 | INIT_LIST_HEAD(&lu_gp->lu_gp_list); |
1042 | INIT_LIST_HEAD(&lu_gp->lu_gp_mem_list); | 1042 | INIT_LIST_HEAD(&lu_gp->lu_gp_mem_list); |
@@ -1044,7 +1044,7 @@ core_alua_allocate_lu_gp(const char *name, int def_group) | |||
1044 | atomic_set(&lu_gp->lu_gp_ref_cnt, 0); | 1044 | atomic_set(&lu_gp->lu_gp_ref_cnt, 0); |
1045 | 1045 | ||
1046 | if (def_group) { | 1046 | if (def_group) { |
1047 | lu_gp->lu_gp_id = se_global->alua_lu_gps_counter++;; | 1047 | lu_gp->lu_gp_id = se_global->alua_lu_gps_counter++; |
1048 | lu_gp->lu_gp_valid_id = 1; | 1048 | lu_gp->lu_gp_valid_id = 1; |
1049 | se_global->alua_lu_gps_count++; | 1049 | se_global->alua_lu_gps_count++; |
1050 | } | 1050 | } |
diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c index 9583b23c9c84..b9d3501bdd91 100644 --- a/drivers/target/target_core_transport.c +++ b/drivers/target/target_core_transport.c | |||
@@ -2128,7 +2128,7 @@ static void transport_failure_reset_queue_depth(struct se_device *dev) | |||
2128 | { | 2128 | { |
2129 | unsigned long flags; | 2129 | unsigned long flags; |
2130 | 2130 | ||
2131 | spin_lock_irqsave(&SE_HBA(dev)->hba_queue_lock, flags);; | 2131 | spin_lock_irqsave(&SE_HBA(dev)->hba_queue_lock, flags); |
2132 | atomic_inc(&dev->depth_left); | 2132 | atomic_inc(&dev->depth_left); |
2133 | atomic_inc(&SE_HBA(dev)->left_queue_depth); | 2133 | atomic_inc(&SE_HBA(dev)->left_queue_depth); |
2134 | spin_unlock_irqrestore(&SE_HBA(dev)->hba_queue_lock, flags); | 2134 | spin_unlock_irqrestore(&SE_HBA(dev)->hba_queue_lock, flags); |
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index 74273e638c0d..77623b936538 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c | |||
@@ -2128,7 +2128,7 @@ static int gsmld_attach_gsm(struct tty_struct *tty, struct gsm_mux *gsm) | |||
2128 | 2128 | ||
2129 | /** | 2129 | /** |
2130 | * gsmld_detach_gsm - stop doing 0710 mux | 2130 | * gsmld_detach_gsm - stop doing 0710 mux |
2131 | * @tty: tty atttached to the mux | 2131 | * @tty: tty attached to the mux |
2132 | * @gsm: mux | 2132 | * @gsm: mux |
2133 | * | 2133 | * |
2134 | * Shutdown and then clean up the resources used by the line discipline | 2134 | * Shutdown and then clean up the resources used by the line discipline |
diff --git a/drivers/tty/serial/bfin_sport_uart.c b/drivers/tty/serial/bfin_sport_uart.c index c3ec0a61d859..891d194ae754 100644 --- a/drivers/tty/serial/bfin_sport_uart.c +++ b/drivers/tty/serial/bfin_sport_uart.c | |||
@@ -296,8 +296,7 @@ static int sport_startup(struct uart_port *port) | |||
296 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | | 296 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | |
297 | IRQF_DISABLED, "BFIN_SPORT_UART_CTS", up)) { | 297 | IRQF_DISABLED, "BFIN_SPORT_UART_CTS", up)) { |
298 | up->cts_pin = -1; | 298 | up->cts_pin = -1; |
299 | dev_info(port->dev, "Unable to attach BlackFin UART \ | 299 | dev_info(port->dev, "Unable to attach BlackFin UART over SPORT CTS interrupt. So, disable it.\n"); |
300 | over SPORT CTS interrupt. So, disable it.\n"); | ||
301 | } | 300 | } |
302 | } | 301 | } |
303 | if (up->rts_pin >= 0) | 302 | if (up->rts_pin >= 0) |
diff --git a/drivers/tty/serial/mfd.c b/drivers/tty/serial/mfd.c index c111f36f5d21..cab52f4a88b0 100644 --- a/drivers/tty/serial/mfd.c +++ b/drivers/tty/serial/mfd.c | |||
@@ -49,8 +49,8 @@ | |||
49 | 49 | ||
50 | static int hsu_dma_enable; | 50 | static int hsu_dma_enable; |
51 | module_param(hsu_dma_enable, int, 0); | 51 | module_param(hsu_dma_enable, int, 0); |
52 | MODULE_PARM_DESC(hsu_dma_enable, "It is a bitmap to set working mode, if \ | 52 | MODULE_PARM_DESC(hsu_dma_enable, |
53 | bit[x] is 1, then port[x] will work in DMA mode, otherwise in PIO mode."); | 53 | "It is a bitmap to set working mode, if bit[x] is 1, then port[x] will work in DMA mode, otherwise in PIO mode."); |
54 | 54 | ||
55 | struct hsu_dma_buffer { | 55 | struct hsu_dma_buffer { |
56 | u8 *buf; | 56 | u8 *buf; |
diff --git a/drivers/tty/serial/mrst_max3110.c b/drivers/tty/serial/mrst_max3110.c index 2f548af4e98a..1bd28450ca40 100644 --- a/drivers/tty/serial/mrst_max3110.c +++ b/drivers/tty/serial/mrst_max3110.c | |||
@@ -56,7 +56,7 @@ struct uart_max3110 { | |||
56 | wait_queue_head_t wq; | 56 | wait_queue_head_t wq; |
57 | struct task_struct *main_thread; | 57 | struct task_struct *main_thread; |
58 | struct task_struct *read_thread; | 58 | struct task_struct *read_thread; |
59 | struct mutex thread_mutex;; | 59 | struct mutex thread_mutex; |
60 | 60 | ||
61 | u32 baud; | 61 | u32 baud; |
62 | u16 cur_conf; | 62 | u16 cur_conf; |
diff --git a/drivers/tty/tty_ioctl.c b/drivers/tty/tty_ioctl.c index 21574cb32343..620c971422b6 100644 --- a/drivers/tty/tty_ioctl.c +++ b/drivers/tty/tty_ioctl.c | |||
@@ -309,7 +309,7 @@ EXPORT_SYMBOL(tty_termios_input_baud_rate); | |||
309 | * @ospeed: output speed | 309 | * @ospeed: output speed |
310 | * | 310 | * |
311 | * Encode the speeds set into the passed termios structure. This is | 311 | * Encode the speeds set into the passed termios structure. This is |
312 | * used as a library helper for drivers os that they can report back | 312 | * used as a library helper for drivers so that they can report back |
313 | * the actual speed selected when it differs from the speed requested | 313 | * the actual speed selected when it differs from the speed requested |
314 | * | 314 | * |
315 | * For maximal back compatibility with legacy SYS5/POSIX *nix behaviour | 315 | * For maximal back compatibility with legacy SYS5/POSIX *nix behaviour |
diff --git a/drivers/usb/gadget/atmel_usba_udc.c b/drivers/usb/gadget/atmel_usba_udc.c index e7c65a4408fb..db1a659702ba 100644 --- a/drivers/usb/gadget/atmel_usba_udc.c +++ b/drivers/usb/gadget/atmel_usba_udc.c | |||
@@ -2095,6 +2095,6 @@ static void __exit udc_exit(void) | |||
2095 | module_exit(udc_exit); | 2095 | module_exit(udc_exit); |
2096 | 2096 | ||
2097 | MODULE_DESCRIPTION("Atmel USBA UDC driver"); | 2097 | MODULE_DESCRIPTION("Atmel USBA UDC driver"); |
2098 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 2098 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
2099 | MODULE_LICENSE("GPL"); | 2099 | MODULE_LICENSE("GPL"); |
2100 | MODULE_ALIAS("platform:atmel_usba_udc"); | 2100 | MODULE_ALIAS("platform:atmel_usba_udc"); |
diff --git a/drivers/usb/host/imx21-dbg.c b/drivers/usb/host/imx21-dbg.c index 512f647448ca..6d7533427163 100644 --- a/drivers/usb/host/imx21-dbg.c +++ b/drivers/usb/host/imx21-dbg.c | |||
@@ -384,7 +384,7 @@ static void debug_isoc_show_one(struct seq_file *s, | |||
384 | seq_printf(s, "%s %d:\n" | 384 | seq_printf(s, "%s %d:\n" |
385 | "cc=0X%02X\n" | 385 | "cc=0X%02X\n" |
386 | "scheduled frame %d (%d)\n" | 386 | "scheduled frame %d (%d)\n" |
387 | "submittted frame %d (%d)\n" | 387 | "submitted frame %d (%d)\n" |
388 | "completed frame %d (%d)\n" | 388 | "completed frame %d (%d)\n" |
389 | "requested length=%d\n" | 389 | "requested length=%d\n" |
390 | "completed length=%d\n\n", | 390 | "completed length=%d\n\n", |
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 4f65b14e5e08..448b9d1f0e70 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -53,9 +53,10 @@ | |||
53 | /* | 53 | /* |
54 | * Version Information | 54 | * Version Information |
55 | */ | 55 | */ |
56 | #define DRIVER_AUTHOR "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, \ | 56 | #define DRIVER_AUTHOR \ |
57 | Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, \ | 57 | "Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, " \ |
58 | Alan Stern" | 58 | "Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, " \ |
59 | "Roman Weissgaerber, Alan Stern" | ||
59 | #define DRIVER_DESC "USB Universal Host Controller Interface driver" | 60 | #define DRIVER_DESC "USB Universal Host Controller Interface driver" |
60 | 61 | ||
61 | /* for flakey hardware, ignore overcurrent indicators */ | 62 | /* for flakey hardware, ignore overcurrent indicators */ |
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c index 388cc128072a..ff9a01f8d405 100644 --- a/drivers/usb/misc/usbtest.c +++ b/drivers/usb/misc/usbtest.c | |||
@@ -104,7 +104,7 @@ get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf) | |||
104 | alt = intf->altsetting + tmp; | 104 | alt = intf->altsetting + tmp; |
105 | 105 | ||
106 | /* take the first altsetting with in-bulk + out-bulk; | 106 | /* take the first altsetting with in-bulk + out-bulk; |
107 | * ignore other endpoints and altsetttings. | 107 | * ignore other endpoints and altsettings. |
108 | */ | 108 | */ |
109 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { | 109 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { |
110 | struct usb_host_endpoint *e; | 110 | struct usb_host_endpoint *e; |
diff --git a/drivers/usb/storage/ene_ub6250.c b/drivers/usb/storage/ene_ub6250.c index 0e5aafda4537..31645afff5fc 100644 --- a/drivers/usb/storage/ene_ub6250.c +++ b/drivers/usb/storage/ene_ub6250.c | |||
@@ -715,8 +715,8 @@ static int ene_ub6250_probe(struct usb_interface *intf, | |||
715 | 715 | ||
716 | if (!(misc_reg03 & 0x01)) { | 716 | if (!(misc_reg03 & 0x01)) { |
717 | result = -ENODEV; | 717 | result = -ENODEV; |
718 | printk(KERN_NOTICE "ums_eneub6250: The driver only supports SD\ | 718 | printk(KERN_NOTICE "ums_eneub6250: The driver only supports SD card. " |
719 | card. To use SM/MS card, please build driver/stagging/keucr\n"); | 719 | "To use SM/MS card, please build driver/staging/keucr\n"); |
720 | usb_stor_disconnect(intf); | 720 | usb_stor_disconnect(intf); |
721 | } | 721 | } |
722 | 722 | ||
diff --git a/drivers/video/backlight/ltv350qv.c b/drivers/video/backlight/ltv350qv.c index dd0e84a9bd2f..cca43c06d3c8 100644 --- a/drivers/video/backlight/ltv350qv.c +++ b/drivers/video/backlight/ltv350qv.c | |||
@@ -333,7 +333,7 @@ static void __exit ltv350qv_exit(void) | |||
333 | module_init(ltv350qv_init); | 333 | module_init(ltv350qv_init); |
334 | module_exit(ltv350qv_exit); | 334 | module_exit(ltv350qv_exit); |
335 | 335 | ||
336 | MODULE_AUTHOR("Haavard Skinnemoen <hskinnemoen@atmel.com>"); | 336 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
337 | MODULE_DESCRIPTION("Samsung LTV350QV LCD Driver"); | 337 | MODULE_DESCRIPTION("Samsung LTV350QV LCD Driver"); |
338 | MODULE_LICENSE("GPL"); | 338 | MODULE_LICENSE("GPL"); |
339 | MODULE_ALIAS("spi:ltv350qv"); | 339 | MODULE_ALIAS("spi:ltv350qv"); |
diff --git a/drivers/video/console/newport_con.c b/drivers/video/console/newport_con.c index 3772433c49d1..93317b5b8740 100644 --- a/drivers/video/console/newport_con.c +++ b/drivers/video/console/newport_con.c | |||
@@ -6,7 +6,7 @@ | |||
6 | * | 6 | * |
7 | * This driver is based on sgicons.c and cons_newport. | 7 | * This driver is based on sgicons.c and cons_newport. |
8 | * | 8 | * |
9 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) | 9 | * Copyright (C) 1996 David S. Miller (davem@davemloft.net) |
10 | * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx) | 10 | * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx) |
11 | */ | 11 | */ |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
diff --git a/drivers/video/msm/mddi.c b/drivers/video/msm/mddi.c index b66d86ac7cea..178b0720bd79 100644 --- a/drivers/video/msm/mddi.c +++ b/drivers/video/msm/mddi.c | |||
@@ -679,7 +679,7 @@ static int __devinit mddi_probe(struct platform_device *pdev) | |||
679 | printk(KERN_ERR "mddi: no associated mem resource!\n"); | 679 | printk(KERN_ERR "mddi: no associated mem resource!\n"); |
680 | return -ENOMEM; | 680 | return -ENOMEM; |
681 | } | 681 | } |
682 | mddi->base = ioremap(resource->start, resource->end - resource->start); | 682 | mddi->base = ioremap(resource->start, resource_size(resource)); |
683 | if (!mddi->base) { | 683 | if (!mddi->base) { |
684 | printk(KERN_ERR "mddi: failed to remap base!\n"); | 684 | printk(KERN_ERR "mddi: failed to remap base!\n"); |
685 | ret = -EINVAL; | 685 | ret = -EINVAL; |
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c index 7d0284882984..0b2f2dd41416 100644 --- a/drivers/video/mxsfb.c +++ b/drivers/video/mxsfb.c | |||
@@ -401,7 +401,7 @@ static int mxsfb_set_par(struct fb_info *fb_info) | |||
401 | writel(CTRL1_FIFO_CLEAR, host->base + LCDC_CTRL1 + REG_SET); | 401 | writel(CTRL1_FIFO_CLEAR, host->base + LCDC_CTRL1 + REG_SET); |
402 | 402 | ||
403 | ctrl = CTRL_BYPASS_COUNT | CTRL_MASTER | | 403 | ctrl = CTRL_BYPASS_COUNT | CTRL_MASTER | |
404 | CTRL_SET_BUS_WIDTH(host->ld_intf_width);; | 404 | CTRL_SET_BUS_WIDTH(host->ld_intf_width); |
405 | 405 | ||
406 | switch (fb_info->var.bits_per_pixel) { | 406 | switch (fb_info->var.bits_per_pixel) { |
407 | case 16: | 407 | case 16: |
diff --git a/drivers/watchdog/bcm63xx_wdt.c b/drivers/watchdog/bcm63xx_wdt.c index 3c5045a206dd..5064e8317521 100644 --- a/drivers/watchdog/bcm63xx_wdt.c +++ b/drivers/watchdog/bcm63xx_wdt.c | |||
@@ -248,7 +248,7 @@ static int __devinit bcm63xx_wdt_probe(struct platform_device *pdev) | |||
248 | return -ENODEV; | 248 | return -ENODEV; |
249 | } | 249 | } |
250 | 250 | ||
251 | bcm63xx_wdt_device.regs = ioremap_nocache(r->start, r->end - r->start); | 251 | bcm63xx_wdt_device.regs = ioremap_nocache(r->start, resource_size(r)); |
252 | if (!bcm63xx_wdt_device.regs) { | 252 | if (!bcm63xx_wdt_device.regs) { |
253 | dev_err(&pdev->dev, "failed to remap I/O resources\n"); | 253 | dev_err(&pdev->dev, "failed to remap I/O resources\n"); |
254 | return -ENXIO; | 254 | return -ENXIO; |
diff --git a/drivers/xen/evtchn.c b/drivers/xen/evtchn.c index ef11daf0cafe..dbc13e94b612 100644 --- a/drivers/xen/evtchn.c +++ b/drivers/xen/evtchn.c | |||
@@ -470,7 +470,7 @@ static int evtchn_open(struct inode *inode, struct file *filp) | |||
470 | 470 | ||
471 | filp->private_data = u; | 471 | filp->private_data = u; |
472 | 472 | ||
473 | return nonseekable_open(inode, filp);; | 473 | return nonseekable_open(inode, filp); |
474 | } | 474 | } |
475 | 475 | ||
476 | static int evtchn_release(struct inode *inode, struct file *filp) | 476 | static int evtchn_release(struct inode *inode, struct file *filp) |
diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c index 54469c3eeacd..65ea21a97492 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c | |||
@@ -54,7 +54,7 @@ u64 start_dma_addr; | |||
54 | 54 | ||
55 | static dma_addr_t xen_phys_to_bus(phys_addr_t paddr) | 55 | static dma_addr_t xen_phys_to_bus(phys_addr_t paddr) |
56 | { | 56 | { |
57 | return phys_to_machine(XPADDR(paddr)).maddr;; | 57 | return phys_to_machine(XPADDR(paddr)).maddr; |
58 | } | 58 | } |
59 | 59 | ||
60 | static phys_addr_t xen_bus_to_phys(dma_addr_t baddr) | 60 | static phys_addr_t xen_bus_to_phys(dma_addr_t baddr) |