diff --git a/[refs] b/[refs] index ebd3d2295ade..899e63d0c467 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: dc30a436903ccf180b0313d3fc3f44278a1d44c8 +refs/heads/master: 61ed1dca1645d2dd64c83a01f728dfd59fa789b6 diff --git a/trunk/sound/pci/au88x0/au88x0_synth.c b/trunk/sound/pci/au88x0/au88x0_synth.c index 2805e34bd41d..8bef47311e45 100644 --- a/trunk/sound/pci/au88x0/au88x0_synth.c +++ b/trunk/sound/pci/au88x0/au88x0_synth.c @@ -58,7 +58,7 @@ static void vortex_wt_setdsout(vortex_t * vortex, u32 wt, int en) if (en) temp |= (1 << (wt & 0x1f)); else - temp &= (1 << ~(wt & 0x1f)); + temp &= ~(1 << (wt & 0x1f)); hwwrite(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0), temp); }