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

ALSA: usx2y: Fix typo in usbusx2yaudio.c and usx2yhwdeppcm.c

Correct spelling "propably" to "probably" and "activ" to "active"
in sound/usb/usx2y/usbusx2yaudio.c and usx2yhwdeppcm.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Masanari Iida and committed by
Takashi Iwai
6e8d5d2f f443ac93

+3 -3
+2 -2
sound/usb/usx2y/usbusx2yaudio.c
··· 80 80 cp = (unsigned char*)urb->transfer_buffer + urb->iso_frame_desc[i].offset; 81 81 if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */ 82 82 snd_printk(KERN_ERR "active frame status %i. " 83 - "Most propably some hardware problem.\n", 83 + "Most probably some hardware problem.\n", 84 84 urb->iso_frame_desc[i].status); 85 85 return urb->iso_frame_desc[i].status; 86 86 } ··· 300 300 { 301 301 snd_printk(KERN_ERR 302 302 "Sequence Error!(hcd_frame=%i ep=%i%s;wait=%i,frame=%i).\n" 303 - "Most propably some urb of usb-frame %i is still missing.\n" 303 + "Most probably some urb of usb-frame %i is still missing.\n" 304 304 "Cause could be too long delays in usb-hcd interrupt handling.\n", 305 305 usb_get_current_frame_number(usX2Y->dev), 306 306 subs->endpoint, usb_pipein(urb->pipe) ? "in" : "out",
+1 -1
sound/usb/usx2y/usx2yhwdeppcm.c
··· 74 74 } 75 75 for (i = 0; i < nr_of_packs(); i++) { 76 76 if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */ 77 - snd_printk(KERN_ERR "activ frame status %i. Most propably some hardware problem.\n", urb->iso_frame_desc[i].status); 77 + snd_printk(KERN_ERR "active frame status %i. Most probably some hardware problem.\n", urb->iso_frame_desc[i].status); 78 78 return urb->iso_frame_desc[i].status; 79 79 } 80 80 lens += urb->iso_frame_desc[i].actual_length / usX2Y->stride;