lkml.org 
[lkml]   [2013]   [Jan]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] sound/pci/au88x0/au88x0_synth.c: fix incorrect left shift
At Sat,  5 Jan 2013 14:14:08 -0500,
Nickolai Zeldovich wrote:
>
> vortex_wt_setdsout performs bit-negation on the bit position (wt&0x1f)
> rather than on the resulting bitmask. This code is never actually
> invoked (vortex_wt_setdsout is always called with en=1), so this does
> not currently cause any problem, and this patch is simply cleanup.
>
> Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>

Thanks, applied.


Takashi

> ---
> sound/pci/au88x0/au88x0_synth.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/pci/au88x0/au88x0_synth.c b/sound/pci/au88x0/au88x0_synth.c
> index 2805e34..8bef473 100644
> --- a/sound/pci/au88x0/au88x0_synth.c
> +++ b/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);
> }
>
> --
> 1.7.10.4
>


\
 
 \ /
  Last update: 2013-01-07 18:01    [W:0.055 / U:0.228 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site