mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 22:02:58 -04:00
Remove extraneous devclass argument from DRIVER_MODULE_ORDERED6.
This is the variant of DRIVER_MODULE_ORDERED that does not accept a
devclass argument.
Fixes: 2a99dd30df Deprecate the 'devclass' argument from *DRIVER_MODULE() macros.
This commit is contained in:
parent
262b581d17
commit
0fdf5bc531
1 changed files with 1 additions and 2 deletions
|
|
@ -853,8 +853,7 @@ DECLARE_MODULE(name##_##busname, name##_##busname##_mod, \
|
|||
EARLY_DRIVER_MODULE_ORDERED8(name, busname, driver, devclass, \
|
||||
evh, arg, order, BUS_PASS_DEFAULT)
|
||||
|
||||
#define DRIVER_MODULE_ORDERED6(name, busname, driver, devclass, evh, arg,\
|
||||
order) \
|
||||
#define DRIVER_MODULE_ORDERED6(name, busname, driver, evh, arg, order) \
|
||||
EARLY_DRIVER_MODULE_ORDERED7(name, busname, driver, evh, arg, \
|
||||
order, BUS_PASS_DEFAULT)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue