staging: vt6656: Use __releases/__acquires annotations
This patch fixes the following sparse warnings: drivers/staging/vt6656/usbpipe.c:147:24: warning: context imbalance in 'PIPEnsControlOut' - unexpected unlock drivers/staging/vt6656/usbpipe.c:209:24: warning: context imbalance in 'PIPEnsControlIn' - unexpected unlock Signed-off-by: Iulia Manda <iulia.manda21@gmail.com> Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
This commit is contained in:
parent
a1148034b3
commit
9009dd160f
|
@ -105,6 +105,8 @@ int PIPEnsControlOutAsyn(struct vnt_private *pDevice, u8 byRequest,
|
|||
|
||||
int PIPEnsControlOut(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
|
||||
u16 wIndex, u16 wLength, u8 *pbyBuffer)
|
||||
__releases(&pDevice->lock)
|
||||
__acquires(&pDevice->lock)
|
||||
{
|
||||
int ntStatus = 0;
|
||||
int ii;
|
||||
|
@ -167,6 +169,8 @@ int PIPEnsControlOut(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
|
|||
|
||||
int PIPEnsControlIn(struct vnt_private *pDevice, u8 byRequest, u16 wValue,
|
||||
u16 wIndex, u16 wLength, u8 *pbyBuffer)
|
||||
__releases(&pDevice->lock)
|
||||
__acquires(&pDevice->lock)
|
||||
{
|
||||
int ntStatus = 0;
|
||||
int ii;
|
||||
|
|
Loading…
Reference in New Issue