diff options
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/vector_kern.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/um/drivers/vector_kern.c b/arch/um/drivers/vector_kern.c index d1d53015d572..bb83a2d22ac2 100644 --- a/arch/um/drivers/vector_kern.c +++ b/arch/um/drivers/vector_kern.c | |||
@@ -1156,8 +1156,10 @@ static int vector_net_open(struct net_device *dev) | |||
1156 | struct vector_device *vdevice; | 1156 | struct vector_device *vdevice; |
1157 | 1157 | ||
1158 | spin_lock_irqsave(&vp->lock, flags); | 1158 | spin_lock_irqsave(&vp->lock, flags); |
1159 | if (vp->opened) | 1159 | if (vp->opened) { |
1160 | spin_unlock_irqrestore(&vp->lock, flags); | ||
1160 | return -ENXIO; | 1161 | return -ENXIO; |
1162 | } | ||
1161 | vp->opened = true; | 1163 | vp->opened = true; |
1162 | spin_unlock_irqrestore(&vp->lock, flags); | 1164 | spin_unlock_irqrestore(&vp->lock, flags); |
1163 | 1165 | ||