mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
This version is based on
https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-testing.git
78667a29c116c6b186a37e28cd8dd7fa9923aee8 (tag: wt-2022-09-02)
and was committed to FreeBSD main as
8e93258f26.
15 lines
387 B
C
15 lines
387 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
* Copyright(c) 2019-2020 Realtek Corporation
|
|
*/
|
|
#ifndef __SER_H__
|
|
#define __SER_H__
|
|
|
|
#include "core.h"
|
|
|
|
int rtw89_ser_init(struct rtw89_dev *rtwdev);
|
|
int rtw89_ser_deinit(struct rtw89_dev *rtwdev);
|
|
int rtw89_ser_notify(struct rtw89_dev *rtwdev, u32 err);
|
|
void rtw89_ser_recfg_done(struct rtw89_dev *rtwdev);
|
|
|
|
#endif /* __SER_H__*/
|
|
|