Commit bc568942 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7df1735b
...@@ -650,8 +650,7 @@ static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -650,8 +650,7 @@ static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
&audio->read_phys, &audio->read_phys,
GFP_KERNEL); GFP_KERNEL);
if (!audio->read_data) { if (!audio->read_data) {
pr_err("audio_mp3: malloc pcm \ pr_err("audio_mp3: malloc pcm buf failed\n");
buf failed\n");
rc = -1; rc = -1;
} else { } else {
uint8_t index; uint8_t index;
......
...@@ -482,8 +482,7 @@ int ieee80211_wx_set_power(struct ieee80211_device *ieee, ...@@ -482,8 +482,7 @@ int ieee80211_wx_set_power(struct ieee80211_device *ieee,
(!ieee->enter_sleep_state) || (!ieee->enter_sleep_state) ||
(!ieee->ps_is_queue_empty)){ (!ieee->ps_is_queue_empty)){
printk("ERROR. PS mode is tryied to be use but\ printk("ERROR. PS mode tried to be use but driver missed a callback\n\n");
driver missed a callback\n\n");
return -1; return -1;
} }
......
...@@ -3813,8 +3813,7 @@ static int __init rtl8180_pci_module_init(void) ...@@ -3813,8 +3813,7 @@ static int __init rtl8180_pci_module_init(void)
return ret; return ret;
} }
printk(KERN_INFO "\nLinux kernel driver for RTL8180 \ printk(KERN_INFO "\nLinux kernel driver for RTL8180 / RTL8185 based WLAN cards\n");
/ RTL8185 based WLAN cards\n");
printk(KERN_INFO "Copyright (c) 2004-2005, Andrea Merello\n"); printk(KERN_INFO "Copyright (c) 2004-2005, Andrea Merello\n");
DMESG("Initializing module"); DMESG("Initializing module");
DMESG("Wireless extensions version %d", WIRELESS_EXT); DMESG("Wireless extensions version %d", WIRELESS_EXT);
......
...@@ -384,8 +384,7 @@ static int sep_mmap(struct file *filp, struct vm_area_struct *vma) ...@@ -384,8 +384,7 @@ static int sep_mmap(struct file *filp, struct vm_area_struct *vma)
shared area */ shared area */
if ((vma->vm_end - vma->vm_start) > SEP_DRIVER_MMMAP_AREA_SIZE) { if ((vma->vm_end - vma->vm_start) > SEP_DRIVER_MMMAP_AREA_SIZE) {
edbg("SEP Driver mmap requested size is more than allowed\n"); edbg("SEP Driver mmap requested size is more than allowed\n");
printk(KERN_WARNING "SEP Driver mmap requested size is more \ printk(KERN_WARNING "SEP Driver mmap requested size is more than allowed\n");
than allowed\n");
printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_end); printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_end);
printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_start); printk(KERN_WARNING "SEP Driver vma->vm_end is %08lx\n", vma->vm_start);
return -EAGAIN; return -EAGAIN;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment