Update to FreeBSD stable/12 2019-02-11

Git mirror commit 606b591dae1023a71ff020faf99789059eb6591f.
This commit is contained in:
Sebastian Huber
2019-02-11 15:26:17 +01:00
parent 0b177c7c27
commit 556ec29b4e
47 changed files with 1113 additions and 337 deletions

View File

@@ -119,6 +119,14 @@ struct kobjop_desc bus_teardown_intr_desc = {
0, { &bus_teardown_intr_desc, (kobjop_t)kobj_error_method }
};
struct kobjop_desc bus_suspend_intr_desc = {
0, { &bus_suspend_intr_desc, (kobjop_t)bus_generic_suspend_intr }
};
struct kobjop_desc bus_resume_intr_desc = {
0, { &bus_resume_intr_desc, (kobjop_t)bus_generic_resume_intr }
};
struct kobjop_desc bus_set_resource_desc = {
0, { &bus_set_resource_desc, (kobjop_t)kobj_error_method }
};