drivers/interrupt_controller: Fix VT-D EIME value

It's the 11th bit and not 11.

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2021-01-06 10:15:58 +01:00 committed by Anas Nashif
commit e2b4f7e50f
2 changed files with 1 additions and 2 deletions

View file

@ -48,7 +48,6 @@ static void vtd_send_cmd(const struct device *dev,
status_bit)) {
/* Do nothing */
}
}
static int vtd_ictl_allocate_entries(const struct device *dev,

View file

@ -109,7 +109,7 @@
/* Interrupt Remapping Table Address Register details */
#define VTD_IRTA_SIZE_MASK 0x00000000000000FF
#define VTD_IRTA_EIME 11
#define VTD_IRTA_EIME BIT(11)
#define VTD_IRTA_ADDR_SHIFT 12
#define VTD_IRTA_REG_GEN_CONTENT(addr, size, mode) \