mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Import rtw89 based on wireless-testing at (tag: wt-2022-09-02) 78667a29c116c6b186a37e28cd8dd7fa9923aee8 with adjustments for FreeBSD. For the moment this will stay disconnected from the build until the last bits are flushed out, but this will help people with a card to do testing and possibly help improving. Given the lack of full license texts on non-local files this is imported under the draft policy for handling SPDX files (D29226). [1] Approved by: core.11 (imp) [1] [2022-03-27] MFC after: 6 weeks
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__*/
|
|
|