Files
kernel_common_drivers/drivers/wireless/main.c
T
jiabin.chen 5957bceeee wifi: del some print [1/1]
PD#SWPL-161547

Problem:
print some information use too much memory

Solution:
del some print

Verify:
t950s_be311

Change-Id: I3f37aaebd70a2b9ebff08ba79e33cfed76a05638
Signed-off-by: jiabin.chen <jiabin.chen@amlogic.com>
2024-03-21 05:43:23 -07:00

28 lines
497 B
C

// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
//#define DEBUG
#include <linux/module.h>
#include <linux/amlogic/module_merge.h>
#include "main.h"
static int __init wireless_main_init(void)
{
call_sub_init(wifi_dt_init);
call_sub_init(bt_init);
return 0;
}
static void __exit wireless_main_exit(void)
{
bt_exit();
wifi_dt_exit();
}
module_init(wireless_main_init);
module_exit(wireless_main_exit);
MODULE_LICENSE("GPL v2");