mpt3sas: add missing curly braces

There are some missing curly braces on this if statement, so we end up
printing when we shouldn't.

Fixes: a470a51cd648 ('mpt3sas: Handle active cable exception event')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Chaitra P B <chaitra.basappa@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by Dan Carpenter and committed by Martin K. Petersen 7ebd67e0 eb72d0bb

+2 -1
+2 -1
drivers/scsi/mpt3sas/mpt3sas_scsih.c
··· 7975 7975 ActiveCableEventData = 7976 7976 (Mpi26EventDataActiveCableExcept_t *) mpi_reply->EventData; 7977 7977 if (ActiveCableEventData->ReasonCode == 7978 - MPI26_EVENT_ACTIVE_CABLE_INSUFFICIENT_POWER) 7978 + MPI26_EVENT_ACTIVE_CABLE_INSUFFICIENT_POWER) { 7979 7979 pr_info(MPT3SAS_FMT "Currently an active cable with ReceptacleID %d", 7980 7980 ioc->name, ActiveCableEventData->ReceptacleID); 7981 7981 pr_info("cannot be powered and devices connected to this active cable"); 7982 7982 pr_info("will not be seen. This active cable"); 7983 7983 pr_info("requires %d mW of power", 7984 7984 ActiveCableEventData->ActiveCablePowerRequirement); 7985 + } 7985 7986 break; 7986 7987 7987 7988 default: /* ignore the rest */