blob: df128309f837050e7c04b033ad15725be445c199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright (C) 2003-2004 Intel
* Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
*/
#ifndef MSI_H
#define MSI_H
#define msi_mask_reg(base, is64bit) \
(base + ((is64bit == 1) ? PCI_MSI_MASK_64 : PCI_MSI_MASK_32))
#endif /* MSI_H */
|