Skip to content

Commit 8731215

Browse files
committed
ahci: rename board_ahci_nomsi
The naming format of the board_ahci_no* boards are: board_ahci_no_debounce_delay board_ahci_pcs_quirk_no_devslp board_ahci_pcs_quirk_no_sntf Rename board_ahci_nomsi to board_ahci_no_msi to match the other boards. Reviewed-by: Damien Le Moal <[email protected]> Reviewed-by: Mika Westerberg <[email protected]> Signed-off-by: Niklas Cassel <[email protected]>
1 parent 8d6cfed commit 8731215

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/ata/ahci.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ enum board_ids {
5151
board_ahci_43bit_dma,
5252
board_ahci_ign_iferr,
5353
board_ahci_no_debounce_delay,
54-
board_ahci_nomsi,
54+
board_ahci_no_msi,
5555
/*
5656
* board_ahci_pcs_quirk is for legacy Intel platforms.
5757
* Modern Intel platforms should use board_ahci instead.
@@ -151,7 +151,7 @@ static const struct ata_port_info ahci_port_info[] = {
151151
.udma_mask = ATA_UDMA6,
152152
.port_ops = &ahci_ops,
153153
},
154-
[board_ahci_nomsi] = {
154+
[board_ahci_no_msi] = {
155155
AHCI_HFLAGS (AHCI_HFLAG_NO_MSI),
156156
.flags = AHCI_FLAG_COMMON,
157157
.pio_mask = ATA_PIO4,
@@ -621,8 +621,8 @@ static const struct pci_device_id ahci_pci_tbl[] = {
621621
* Samsung SSDs found on some macbooks. NCQ times out if MSI is
622622
* enabled. https://bugzilla.kernel.org/show_bug.cgi?id=60731
623623
*/
624-
{ PCI_VDEVICE(SAMSUNG, 0x1600), board_ahci_nomsi },
625-
{ PCI_VDEVICE(SAMSUNG, 0xa800), board_ahci_nomsi },
624+
{ PCI_VDEVICE(SAMSUNG, 0x1600), board_ahci_no_msi },
625+
{ PCI_VDEVICE(SAMSUNG, 0xa800), board_ahci_no_msi },
626626

627627
/* Enmotus */
628628
{ PCI_DEVICE(0x1c44, 0x8000), board_ahci },

0 commit comments

Comments
 (0)