[media] drivers/media: Remove useless return variables
This patch remove variables that are initialized with a constant, are never updated, and are only used as parameter of return. Return the constant instead of using a variable. Verified by compilation only. The coccinelle script that find and fixes this issue is: // <smpl> @@ type T; constant C; identifier ret; @@ - T ret = C; ... when != ret when strict return - ret + C ; // </smpl> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
931387fa94
commit
4df16f702c
@ -910,7 +910,6 @@ static int AllocateRingBuffers(struct pci_dev *pci_dev,
|
||||
{
|
||||
dma_addr_t tmp;
|
||||
u32 i, j;
|
||||
int status = 0;
|
||||
u32 SCListMemSize = pRingBuffer->NumBuffers
|
||||
* ((Buffer2Length != 0) ? (NUM_SCATTER_GATHER_ENTRIES * 2) :
|
||||
NUM_SCATTER_GATHER_ENTRIES)
|
||||
@ -1010,14 +1009,12 @@ static int AllocateRingBuffers(struct pci_dev *pci_dev,
|
||||
|
||||
}
|
||||
|
||||
return status;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int FillTSIdleBuffer(struct SRingBufferDescriptor *pIdleBuffer,
|
||||
struct SRingBufferDescriptor *pRingBuffer)
|
||||
{
|
||||
int status = 0;
|
||||
|
||||
/* Copy pointer to scatter gather list in TSRingbuffer
|
||||
structure for buffer 2
|
||||
Load number of buffer
|
||||
@ -1038,7 +1035,7 @@ static int FillTSIdleBuffer(struct SRingBufferDescriptor *pIdleBuffer,
|
||||
pIdleBuffer->Head->ngeneBuffer.Number_of_entries_1;
|
||||
Cur = Cur->Next;
|
||||
}
|
||||
return status;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static u32 RingBufferSizes[MAX_STREAM] = {
|
||||
|
Reference in New Issue
Block a user