Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60866
b: refs/heads/master
c: 3b20b9b
h: refs/heads/master
v: v3
  • Loading branch information
Muli Ben-Yehuda authored and Linus Torvalds committed Jul 17, 2007
1 parent ddfbc13 commit d5b6816
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d8f75b9183d613d3c29ea451a1cfb793daad5034
refs/heads/master: 3b20b9b4e985fcc48b4eea401cb289a856422c93
5 changes: 5 additions & 0 deletions trunk/sound/oss/trident.c
Original file line number Diff line number Diff line change
Expand Up @@ -2702,6 +2702,7 @@ trident_open(struct inode *inode, struct file *file)
struct trident_card *card = devs;
struct trident_state *state = NULL;
struct dmabuf *dmabuf = NULL;
unsigned long flags;

/* Added by Matt Wu 01-05-2001 */
/* TODO: there's some redundacy here wrt the check below */
Expand Down Expand Up @@ -2779,7 +2780,9 @@ trident_open(struct inode *inode, struct file *file)
/* set default channel attribute to normal playback */
dmabuf->channel->attribute = CHANNEL_PB;
}
spin_lock_irqsave(&card->lock, flags);
trident_set_dac_rate(state, 8000);
spin_unlock_irqrestore(&card->lock, flags);
}

if (file->f_mode & FMODE_READ) {
Expand All @@ -2797,7 +2800,9 @@ trident_open(struct inode *inode, struct file *file)
dmabuf->channel->attribute = (CHANNEL_REC | PCM_LR |
MONO_MIX);
}
spin_lock_irqsave(&card->lock, flags);
trident_set_adc_rate(state, 8000);
spin_unlock_irqrestore(&card->lock, flags);

/* Added by Matt Wu 01-05-2001 */
if (card->pci_id == PCI_DEVICE_ID_ALI_5451)
Expand Down

0 comments on commit d5b6816

Please sign in to comment.