sync with OpenBSD -current

This commit is contained in:
purplerain 2024-01-26 22:08:02 +00:00
parent 25f7188861
commit 8ff00f10fc
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
2137 changed files with 177389 additions and 104447 deletions

View file

@ -51,4 +51,6 @@ struct pci_device_id {
unsigned long driver_data;
};
#define ACPI_ID_LEN 16
#endif

View file

@ -176,4 +176,10 @@ xa_empty(const struct xarray *xa)
return SPLAY_EMPTY(&xa->xa_tree);
}
static inline void
xa_init(struct xarray *xa)
{
xa_init_flags(xa, 0);
}
#endif