mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: comedi: ni_660x: fix memory barrier without comment
Fix the checkpatch.pl issue. Move the memory barrier to a better place. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e8f6e2b98d
commit
5262d035ef
@ -613,9 +613,11 @@ static irqreturn_t ni_660x_interrupt(int irq, void *d)
|
||||
|
||||
if (!dev->attached)
|
||||
return IRQ_NONE;
|
||||
/* make sure dev->attached is checked before doing anything else */
|
||||
smp_mb();
|
||||
|
||||
/* lock to avoid race with comedi_poll */
|
||||
spin_lock_irqsave(&devpriv->interrupt_lock, flags);
|
||||
smp_mb();
|
||||
for (i = 0; i < dev->n_subdevices; ++i) {
|
||||
s = &dev->subdevices[i];
|
||||
if (s->type == COMEDI_SUBD_COUNTER)
|
||||
|
Loading…
x
Reference in New Issue
Block a user