1 // SPDX-License-Identifier: GPL-2.0-only 2 /* vendor_hook.c 3 * 4 * Vendor Hook Support 5 * 6 * Copyright (C) 2020 Google, Inc. 7 */ 8 9 #define CREATE_TRACE_POINTS 10 #include <trace/hooks/vendor_hooks.h> 11 #include <trace/hooks/bonding.h> 12 13 /* 14 * Export tracepoints that act as a bare tracehook (ie: have no trace event 15 * associated with them) to allow external modules to probe them. 16 */ 17 18 #ifdef CONFIG_VENDOR_BOND_HOOKS 19 EXPORT_TRACEPOINT_SYMBOL_GPL(vendor_bond_check_dev_link); 20 #endif 21