dmaengine: pl330: Remove non-NULL check for pl330_submit_req parameters
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Mon, 29 Sep 2014 12:42:18 +0000 (14:42 +0200)
committerVinod Koul <vinod.koul@intel.com>
Wed, 15 Oct 2014 08:00:09 +0000 (13:30 +0530)
commit937cb2f2498dcbd8bcf6d79dcc24e5c8a3627067
tree6823ee249fe36afe43bab4c524fd632817aa64ec
parentfe6cf28936cc948cd1045568975c5b0d196e76d4
dmaengine: pl330: Remove non-NULL check for pl330_submit_req parameters

The pl330_submit_req() checked supplied 'struct pl330_thread thrd' and
'struct dma_pl330_desc desc' parameters for non-NULL. However these
checks are useless because supplied arguments won't be NULL.

The pl330_submit_req() is called in only one place and:
1. 'desc' is already dereferenced in fill_queue() before calling
   pl330_submit_req().
2. 'thrd' is always dereferenced after calling
   fill_queue()->pl330_submit_req().

Removing the checks for non-NULL values fixes following warning:
drivers/dma/pl330.c:1376 pl330_submit_req() warn: variable dereferenced before check 'thrd' (see line 1367)

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/pl330.c