[SCSI] mptfusion : mptscsih_abort return value should be SUCCESS instead of value 0.

retval should be SUCCESS/FAILED which is defined at scsi.h
retval = 0 is directing wrong return value. It must be retval = SUCCESS.

Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>

authored by Kashyap, Desai and committed by James Bottomley 9858ae38 6339204e

+1 -1
+1 -1
drivers/message/fusion/mptscsih.c
··· 1796 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "task abort: " 1797 "Command not in the active list! (sc=%p)\n", ioc->name, 1798 SCpnt)); 1799 - retval = 0; 1800 goto out; 1801 } 1802
··· 1796 dtmprintk(ioc, printk(MYIOC_s_DEBUG_FMT "task abort: " 1797 "Command not in the active list! (sc=%p)\n", ioc->name, 1798 SCpnt)); 1799 + retval = SUCCESS; 1800 goto out; 1801 } 1802