1
0
Fork 0

pata_arasan_cf: Delete an unnecessary variable initialisation in arasan_cf_probe()

The local variable "ret" will eventually be set to an appropriate value
a bit later. Thus omit the explicit initialisation at the beginning.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Tejun Heo <tj@kernel.org>
hifive-unleashed-5.1
Markus Elfring 2018-02-16 16:28:23 +01:00 committed by Tejun Heo
parent dcf3c1c1e8
commit 27c4203a3d
1 changed files with 1 additions and 1 deletions

View File

@ -796,7 +796,7 @@ static int arasan_cf_probe(struct platform_device *pdev)
struct resource *res;
u32 quirk;
irq_handler_t irq_handler = NULL;
int ret = 0;
int ret;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res)