mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 04:41:28 +00:00

New upcoming chip is RTL8852BE-VT (or RTL8852BTE; 8852BT PCIE interface), which is a variant of 8852B, and many codes excepting to RF calibration can be shared, so move common code to an new kernel module named rtw89_8852b_common.ko. No logic change. Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://msgid.link/20240607070659.80263-2-pkshih@realtek.com
16 lines
300 B
C
16 lines
300 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/* Copyright(c) 2019-2022 Realtek Corporation
|
|
*/
|
|
|
|
#ifndef __RTW89_8852B_H__
|
|
#define __RTW89_8852B_H__
|
|
|
|
#include "core.h"
|
|
|
|
#define RF_PATH_NUM_8852B 2
|
|
#define BB_PATH_NUM_8852B 2
|
|
|
|
extern const struct rtw89_chip_info rtw8852b_chip_info;
|
|
|
|
#endif
|