diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-14 10:38:55 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-02-15 08:56:11 -0500 |
commit | 6e8d5d2f17e707ecfabd33fd5fa167ac7739326e (patch) | |
tree | f2f21b3d1822f0e2b321dbcc7b9e0d5f7b504e94 /sound/usb | |
parent | f443ac935a2fd80f177c6b5a580cc54ef18c552d (diff) |
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>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/usx2y/usbusx2yaudio.c | 4 | ||||
-rw-r--r-- | sound/usb/usx2y/usx2yhwdeppcm.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/usb/usx2y/usbusx2yaudio.c b/sound/usb/usx2y/usbusx2yaudio.c index 6ffb3713b60c..520ef96d7c75 100644 --- a/sound/usb/usx2y/usbusx2yaudio.c +++ b/sound/usb/usx2y/usbusx2yaudio.c | |||
@@ -80,7 +80,7 @@ static int usX2Y_urb_capt_retire(struct snd_usX2Y_substream *subs) | |||
80 | cp = (unsigned char*)urb->transfer_buffer + urb->iso_frame_desc[i].offset; | 80 | cp = (unsigned char*)urb->transfer_buffer + urb->iso_frame_desc[i].offset; |
81 | if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */ | 81 | if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */ |
82 | snd_printk(KERN_ERR "active frame status %i. " | 82 | snd_printk(KERN_ERR "active frame status %i. " |
83 | "Most propably some hardware problem.\n", | 83 | "Most probably some hardware problem.\n", |
84 | urb->iso_frame_desc[i].status); | 84 | urb->iso_frame_desc[i].status); |
85 | return urb->iso_frame_desc[i].status; | 85 | return urb->iso_frame_desc[i].status; |
86 | } | 86 | } |
@@ -300,7 +300,7 @@ static void usX2Y_error_sequence(struct usX2Ydev *usX2Y, | |||
300 | { | 300 | { |
301 | snd_printk(KERN_ERR | 301 | snd_printk(KERN_ERR |
302 | "Sequence Error!(hcd_frame=%i ep=%i%s;wait=%i,frame=%i).\n" | 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 | "Cause could be too long delays in usb-hcd interrupt handling.\n", | 304 | "Cause could be too long delays in usb-hcd interrupt handling.\n", |
305 | usb_get_current_frame_number(usX2Y->dev), | 305 | usb_get_current_frame_number(usX2Y->dev), |
306 | subs->endpoint, usb_pipein(urb->pipe) ? "in" : "out", | 306 | subs->endpoint, usb_pipein(urb->pipe) ? "in" : "out", |
diff --git a/sound/usb/usx2y/usx2yhwdeppcm.c b/sound/usb/usx2y/usx2yhwdeppcm.c index a51340f6f2db..8e40b6e67e9e 100644 --- a/sound/usb/usx2y/usx2yhwdeppcm.c +++ b/sound/usb/usx2y/usx2yhwdeppcm.c | |||
@@ -74,7 +74,7 @@ static int usX2Y_usbpcm_urb_capt_retire(struct snd_usX2Y_substream *subs) | |||
74 | } | 74 | } |
75 | for (i = 0; i < nr_of_packs(); i++) { | 75 | for (i = 0; i < nr_of_packs(); i++) { |
76 | if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */ | 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 | return urb->iso_frame_desc[i].status; | 78 | return urb->iso_frame_desc[i].status; |
79 | } | 79 | } |
80 | lens += urb->iso_frame_desc[i].actual_length / usX2Y->stride; | 80 | lens += urb->iso_frame_desc[i].actual_length / usX2Y->stride; |