diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2016-12-22 14:16:56 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-01-05 15:41:02 +1100 |
commit | 69362298453eb12f7d633524ce46834dbb5290d4 (patch) | |
tree | 9310252dfcfc48fd422d827952f28b4ba586c66d /include | |
parent | acb4ce7ed80b2df2eb86390285cb5496614fa37f (diff) | |
download | skiboot-69362298453eb12f7d633524ce46834dbb5290d4.zip skiboot-69362298453eb12f7d633524ce46834dbb5290d4.tar.gz skiboot-69362298453eb12f7d633524ce46834dbb5290d4.tar.bz2 |
xive: Add *any chip* for allocating interrupts
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/opal-api.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/opal-api.h b/include/opal-api.h index 4503177..800f396 100644 --- a/include/opal-api.h +++ b/include/opal-api.h @@ -1118,6 +1118,11 @@ enum { OPAL_XIVE_VP_ENABLED = 0x00000001, }; +/* "Any chip" replacement for chip ID for allocation functions */ +enum { + OPAL_XIVE_ANY_CHIP = 0xffffffff, +}; + #endif /* __ASSEMBLY__ */ #endif /* __OPAL_API_H */ |