Files
android_kernel_samsung_sm86…/qdf/linux/src/qdf_module.c
Adwait Nayak c2c89243d8 qcacmn: Parse and update qdf module params
Read the file wifi_module_param.ini, in which wifi module params
are present and compare these module params with qdf module params
in qdf module init function.

If any of the module params belongs to qdf module is present,
then that particular module param is updted during qdf module init.

Change-Id: I76ef876f6c7be3cdffd93b6050a190438d60bf39
2021-04-27 16:13:11 -07:00

93 lines
2.1 KiB
C

/*
* Copyright (c) 2012-2018, 2021 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/**
* DOC: i_qdf_module.h
* Linux-specific definitions for QDF module API's
*/
#include <linux/module.h>
#include <qdf_perf.h>
#include <qdf_trace.h>
#include <qdf_nbuf.h>
#include <qdf_mem.h>
#include <qdf_event.h>
#include <qdf_talloc.h>
MODULE_AUTHOR("Qualcomm Atheros Inc.");
MODULE_DESCRIPTION("Qualcomm Atheros Device Framework Module");
MODULE_LICENSE("Dual BSD/GPL");
#ifndef EXPORT_SYMTAB
#define EXPORT_SYMTAB
#endif
/**
* qdf_mod_init() - module initialization
*
* Return: int
*/
#ifndef QCA_SINGLE_WIFI_3_0
static int __init qdf_mod_init(void)
#else
int qdf_mod_init(void)
#endif
{
qdf_initialize_module_param_from_ini();
qdf_shared_print_ctrl_init();
qdf_debugfs_init();
qdf_mem_init();
qdf_talloc_feature_init();
qdf_logging_init();
qdf_perfmod_init();
qdf_nbuf_mod_init();
qdf_frag_mod_init();
qdf_event_list_init();
return 0;
}
#ifndef QCA_SINGLE_WIFI_3_0
module_init(qdf_mod_init);
#endif
/**
* qdf_mod_exit() - module remove
*
* Return: int
*/
#ifndef QCA_SINGLE_WIFI_3_0
static void __exit qdf_mod_exit(void)
#else
void qdf_mod_exit(void)
#endif
{
qdf_event_list_destroy();
qdf_frag_mod_exit();
qdf_nbuf_mod_exit();
qdf_perfmod_exit();
qdf_logging_exit();
qdf_talloc_feature_deinit();
qdf_mem_exit();
qdf_debugfs_exit();
qdf_shared_print_ctrl_cleanup();
}
#ifndef QCA_SINGLE_WIFI_3_0
module_exit(qdf_mod_exit);
#endif