24 lines
666 B
Plaintext
24 lines
666 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
menu "Vendor Hooks"
|
|
|
|
config VENDOR_HOOKS
|
|
bool "Vendor Hooks"
|
|
depends on TRACEPOINTS
|
|
help
|
|
Enable vendor hooks implemented as tracepoints
|
|
|
|
Allow vendor modules to attach to tracepoint "hooks" defined via
|
|
DECLARE_HOOK or DECLARE_RESTRICTED_HOOK.
|
|
|
|
config VENDOR_BOND_HOOKS
|
|
bool "Ethernet Bonding driver Vendor Hooks"
|
|
depends on VENDOR_HOOKS && BONDING
|
|
default n
|
|
help
|
|
Enable ethernet bonding driver vendor hooks
|
|
|
|
Allow vendor modules to attach bonding driver hooks defined via
|
|
DECLARE_HOOK or DECLARE_RESTRICTED_HOOK.
|
|
|
|
endmenu
|