diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-08-19 23:50:45 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:52:56 -0400 |
commit | 42379b1122bab7f9aefdbd4b7004a6fa89dfbae5 (patch) | |
tree | cc5e0bb92bc6353d0476d45f5a68ff1fc23c4233 /include | |
parent | c691cc84529ec88ccb32b174535bb61875888c90 (diff) |
pci: change msi-x vector to 32bit
we are using 28bit pci (bus/dev/fn + 12 bits) as irq number, so the
cache for irq number should be 32 bit too.
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 98dc6243a70..1f8db240ca4 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -723,7 +723,7 @@ enum pci_dma_burst_strategy { | |||
723 | }; | 723 | }; |
724 | 724 | ||
725 | struct msix_entry { | 725 | struct msix_entry { |
726 | u16 vector; /* kernel uses to write allocated vector */ | 726 | u32 vector; /* kernel uses to write allocated vector */ |
727 | u16 entry; /* driver uses to specify entry, OS writes */ | 727 | u16 entry; /* driver uses to specify entry, OS writes */ |
728 | }; | 728 | }; |
729 | 729 | ||