msi.h 249 B

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