linux/drivers/net/wireless/realtek/rtl818x/rtl8180/sa2400.c

// SPDX-License-Identifier: GPL-2.0-only

/*
 * Radio tuning for Philips SA2400 on RTL8180
 *
 * Copyright 2007 Andrea Merello <[email protected]>
 *
 * Code from the BSD driver and the rtl8181 project have been
 * very useful to understand certain things
 *
 * I want to thanks the Authors of such projects and the Ndiswrapper
 * project Authors.
 *
 * A special Big Thanks also is for all people who donated me cards,
 * making possible the creation of the original rtl8180 driver
 * from which this code is derived!
 */

#include <linux/pci.h>
#include <linux/delay.h>
#include <net/mac80211.h>

#include "rtl8180.h"
#include "sa2400.h"

static const u32 sa2400_chan[] =;

static void write_sa2400(struct ieee80211_hw *dev, u8 addr, u32 data)
{}

static void sa2400_write_phy_antenna(struct ieee80211_hw *dev, short chan)
{}

static u8 sa2400_rf_rssi_map[] =;

static u8 sa2400_rf_calc_rssi(u8 agc, u8 sq)
{}

static void sa2400_rf_set_channel(struct ieee80211_hw *dev,
				  struct ieee80211_conf *conf)
{}

static void sa2400_rf_stop(struct ieee80211_hw *dev)
{}

static void sa2400_rf_init(struct ieee80211_hw *dev)
{}

const struct rtl818x_rf_ops sa2400_rf_ops =;