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>
This commit is contained in:
Yinghai Lu 2008-08-19 20:50:45 -07:00 committed by Ingo Molnar
parent c691cc8452
commit 42379b1122
2 changed files with 2 additions and 2 deletions

View file

@ -723,7 +723,7 @@ enum pci_dma_burst_strategy {
};
struct msix_entry {
u16 vector; /* kernel uses to write allocated vector */
u32 vector; /* kernel uses to write allocated vector */
u16 entry; /* driver uses to specify entry, OS writes */
};