diff options
author | Justin P. Mattock <justinmattock@gmail.com> | 2010-07-03 10:29:25 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2010-08-01 19:36:03 -0400 |
commit | b429dd5998d6037e0057564f3894f56aff64d661 (patch) | |
tree | 1d1074e068a47c8ee9e0d37d5df27c904fab2ef3 /drivers/ata/ahci.c | |
parent | acad76272c6df8ea1900da334764c05a528598c3 (diff) |
[libata] ahci: Fix warning: comparison between 'enum <anonymous>' and 'enum <anonymous>'
The below patch casts ATA_MAX_QUEUE to int because GCC will
give a warning message about the two different enum blocks:
CC drivers/ata/ahci.o
drivers/ata/ahci.c: In function 'ahci_init_one':
drivers/ata/ahci.c:1045:2: warning: comparison between 'enum <anonymous>' and 'enum <anonymous>'
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index f2522534ae63..fe75d8befc3a 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1042,7 +1042,7 @@ static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1042 | 1042 | ||
1043 | VPRINTK("ENTER\n"); | 1043 | VPRINTK("ENTER\n"); |
1044 | 1044 | ||
1045 | WARN_ON(ATA_MAX_QUEUE > AHCI_MAX_CMDS); | 1045 | WARN_ON((int)ATA_MAX_QUEUE > AHCI_MAX_CMDS); |
1046 | 1046 | ||
1047 | if (!printed_version++) | 1047 | if (!printed_version++) |
1048 | dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n"); | 1048 | dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n"); |