Message ID | 64ed387c-fdef-279c-dace-7c26ffd3cdb6@gmail.com |
---|---|
State | New |
Headers | show |
Series | ahci: use BUILD_BUG_ON for constants comparison | expand |
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);
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(-)