scsi: mpt3sas: clean up a couple sizeof() uses
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 26 Jul 2019 06:52:05 +0000 (09:52 +0300)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 30 Jul 2019 19:56:37 +0000 (15:56 -0400)
commit1de540a9263876a068a15ce216bd236e2c3394d6
treee55d3a66afed3fd01e76de3b53d39098d0215861
parent1623835507e343fbc30c5806c65cafc149e8fcc7
scsi: mpt3sas: clean up a couple sizeof() uses

There is a copy and paste bug here.  It uses EVENT_TRIGGERS size instead of
SCSI_TRIGGERS size but fortunately both size are 84 bytes so it doesn't
affect runtime.

These days the preferred style is to just say sizeof(object) instead of
sizeof(type) so I have updated the function to the latest style as well.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/mpt3sas/mpt3sas_ctl.c