Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: Fix continuation line formats

String constants that are continued on subsequent lines with \
are not good.
Fixed a "is tryied" / tried typo

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Joe Perches and committed by
Greg Kroah-Hartman
bc568942 7df1735b

+4 -8
+1 -2
drivers/staging/dream/qdsp5/audio_mp3.c
··· 650 650 &audio->read_phys, 651 651 GFP_KERNEL); 652 652 if (!audio->read_data) { 653 - pr_err("audio_mp3: malloc pcm \ 654 - buf failed\n"); 653 + pr_err("audio_mp3: malloc pcm buf failed\n"); 655 654 rc = -1; 656 655 } else { 657 656 uint8_t index;
+1 -2
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac_wx.c
··· 482 482 (!ieee->enter_sleep_state) || 483 483 (!ieee->ps_is_queue_empty)){ 484 484 485 - printk("ERROR. PS mode is tryied to be use but\ 486 - driver missed a callback\n\n"); 485 + printk("ERROR. PS mode tried to be use but driver missed a callback\n\n"); 487 486 488 487 return -1; 489 488 }
+1 -2
drivers/staging/rtl8187se/r8180_core.c
··· 3813 3813 return ret; 3814 3814 } 3815 3815 3816 - printk(KERN_INFO "\nLinux kernel driver for RTL8180 \ 3817 - / RTL8185 based WLAN cards\n"); 3816 + printk(KERN_INFO "\nLinux kernel driver for RTL8180 / RTL8185 based WLAN cards\n"); 3818 3817 printk(KERN_INFO "Copyright (c) 2004-2005, Andrea Merello\n"); 3819 3818 DMESG("Initializing module"); 3820 3819 DMESG("Wireless extensions version %d", WIRELESS_EXT);
+1 -2
drivers/staging/sep/sep_driver.c
··· 384 384 shared area */ 385 385 if ((vma->vm_end - vma->vm_start) > SEP_DRIVER_MMMAP_AREA_SIZE) { 386 386 edbg("SEP Driver mmap requested size is more than allowed\n"); 387 - printk(KERN_WARNING "SEP Driver mmap requested size is more \ 388 - than allowed\n"); 387 + printk(KERN_WARNING "SEP Driver mmap requested size is more than allowed\n"); 389 388 printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_end); 390 389 printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_start); 391 390 return -EAGAIN;