Skip to content

Commit

Permalink
Fix ahci driver 'flags' type
Browse files Browse the repository at this point in the history
The new type checking of the flags arguments to irqsave and friends
(commit 3f30789) pointed out this thing
with a big nice warning.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Linus Torvalds committed Jul 25, 2008
1 parent f87bd33 commit 93082f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ata/ahci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
void __iomem *mmio = ap->host->iomap[AHCI_PCI_BAR];
u32 em_ctl;
u32 message[] = {0, 0};
unsigned int flags;
unsigned long flags;
int pmp;
struct ahci_em_priv *emp;

Expand Down

0 comments on commit 93082f0

Please sign in to comment.