diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:56:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:56:36 -0400 |
commit | 93082f0b15841b8926c38ef224d0e6f720000635 (patch) | |
tree | 57f3b9613cd32a9f987e1039a01b540e69114b7f /drivers/ata/ahci.c | |
parent | f87bd330edf06fd49b3fbc368d90fb180375f2a2 (diff) |
Fix ahci driver 'flags' type
The new type checking of the flags arguments to irqsave and friends
(commit 3f307891ce0e7b0438c432af1aacd656a092ff45) pointed out this thing
with a big nice warning.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
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 dc7596f028b6..ef3e5522e1a4 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1273,7 +1273,7 @@ static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state, | |||
1273 | void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR]; | 1273 | void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR]; |
1274 | u32 em_ctl; | 1274 | u32 em_ctl; |
1275 | u32 message[] = {0, 0}; | 1275 | u32 message[] = {0, 0}; |
1276 | unsigned int flags; | 1276 | unsigned long flags; |
1277 | int pmp; | 1277 | int pmp; |
1278 | struct ahci_em_priv *emp; | 1278 | struct ahci_em_priv *emp; |
1279 | 1279 | ||