// SPDX-License-Identifier: GPL-2.0 /* * TFRC library initialisation * * Copyright (c) 2007 The University of Aberdeen, Scotland, UK * Copyright (c) 2007 Arnaldo Carvalho de Melo <[email protected]> */ #include <linux/moduleparam.h> #include "tfrc.h" #ifdef CONFIG_IP_DCCP_TFRC_DEBUG bool tfrc_debug; module_param(tfrc_debug, bool, 0644); MODULE_PARM_DESC(…) …; #endif int __init tfrc_lib_init(void) { … } void tfrc_lib_exit(void) { … }