diff mbox series

ahci: use BUILD_BUG_ON for constants comparison

Message ID 64ed387c-fdef-279c-dace-7c26ffd3cdb6@gmail.com
State New
Headers show
Series ahci: use BUILD_BUG_ON for constants comparison | expand

Commit Message

Heiner Kallweit Feb. 16, 2021, 11:12 a.m. UTC
Both are constant enum values, therefore we can check at
compile time.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/ata/ahci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index 00ba8e5a1..e953425e1 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -1673,7 +1673,7 @@  static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
 
 	VPRINTK("ENTER\n");
 
-	WARN_ON((int)ATA_MAX_QUEUE > AHCI_MAX_CMDS);
+	BUILD_BUG_ON((int)ATA_MAX_QUEUE > AHCI_MAX_CMDS);
 
 	ata_print_version_once(&pdev->dev, DRV_VERSION);