Skip to content

Commit 8a8fb89

Browse files
Xiang Chenmartinkpetersen
authored andcommitted
scsi: scsi_transport_sas: Add spaces around binary operator "|"
According to the kernel coding style, use one space around the binary "|" operator. Add spaces around it. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Xiang Chen <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent a3d8a25 commit 8a8fb89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/scsi_transport_sas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ int sas_rphy_add(struct sas_rphy *rphy)
15261526
list_add_tail(&rphy->list, &sas_host->rphy_list);
15271527
if (identify->device_type == SAS_END_DEVICE &&
15281528
(identify->target_port_protocols &
1529-
(SAS_PROTOCOL_SSP|SAS_PROTOCOL_STP|SAS_PROTOCOL_SATA)))
1529+
(SAS_PROTOCOL_SSP | SAS_PROTOCOL_STP | SAS_PROTOCOL_SATA)))
15301530
rphy->scsi_target_id = sas_host->next_target_id++;
15311531
else if (identify->device_type == SAS_END_DEVICE)
15321532
rphy->scsi_target_id = -1;

0 commit comments

Comments
 (0)