diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-01-26 20:31:24 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2026-02-09 21:49:44 +0000 |
| commit | 1f4fbcf342f41fecc8dff4e0d9a1f9bdb1cdf784 (patch) | |
| tree | 4a34efc01545c0b3fe3d6fc56050c3717c698b26 /sys/compat/linuxkpi/common/include/linux/module.h | |
| parent | 1f19fc2632c98cfe653a082b5fcb02d16053ed06 (diff) | |
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/module.h')
| -rw-r--r-- | sys/compat/linuxkpi/common/include/linux/module.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/module.h b/sys/compat/linuxkpi/common/include/linux/module.h index 079dacf8df6c..fbe57cbbed82 100644 --- a/sys/compat/linuxkpi/common/include/linux/module.h +++ b/sys/compat/linuxkpi/common/include/linux/module.h @@ -53,6 +53,24 @@ #define MODULE_SUPPORTED_DEVICE(name) #define MODULE_IMPORT_NS(_name) +/* Linux has an empty element at the end of the ID table -> nitems() - 1. */ +#define MODULE_DEVICE_TABLE(_bus, _table) \ + \ +static device_method_t _ ## _bus ## _ ## _table ## _methods[] = { \ + DEVMETHOD_END \ +}; \ + \ +static driver_t _ ## _bus ## _ ## _table ## _driver = { \ + "lkpi_" #_bus #_table, \ + _ ## _bus ## _ ## _table ## _methods, \ + 0 \ +}; \ + \ +DRIVER_MODULE(lkpi_ ## _table, _bus, _ ## _bus ## _ ## _table ## _driver,\ + 0, 0); \ + \ +MODULE_DEVICE_TABLE_BUS_ ## _bus(_bus, _table) + /* * THIS_MODULE is used to differentiate modules on Linux. We currently * completely stub out any Linux struct module usage, but THIS_MODULE is still |
