diff options
-rw-r--r-- | sound/oss/trident.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/trident.c b/sound/oss/trident.c index 96adc47917aa..6959ee1bd17f 100644 --- a/sound/oss/trident.c +++ b/sound/oss/trident.c | |||
@@ -2935,7 +2935,7 @@ trident_ac97_set(struct ac97_codec *codec, u8 reg, u16 val) | |||
2935 | do { | 2935 | do { |
2936 | if ((inw(TRID_REG(card, address)) & busy) == 0) | 2936 | if ((inw(TRID_REG(card, address)) & busy) == 0) |
2937 | break; | 2937 | break; |
2938 | } while (count--); | 2938 | } while (--count); |
2939 | 2939 | ||
2940 | data |= (mask | (reg & AC97_REG_ADDR)); | 2940 | data |= (mask | (reg & AC97_REG_ADDR)); |
2941 | 2941 | ||
@@ -2996,7 +2996,7 @@ trident_ac97_get(struct ac97_codec *codec, u8 reg) | |||
2996 | data = inl(TRID_REG(card, address)); | 2996 | data = inl(TRID_REG(card, address)); |
2997 | if ((data & busy) == 0) | 2997 | if ((data & busy) == 0) |
2998 | break; | 2998 | break; |
2999 | } while (count--); | 2999 | } while (--count); |
3000 | spin_unlock_irqrestore(&card->lock, flags); | 3000 | spin_unlock_irqrestore(&card->lock, flags); |
3001 | 3001 | ||
3002 | if (count == 0) { | 3002 | if (count == 0) { |