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

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Radio tuning for Maxim max2820 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 "max2820.h"

static const u32 max2820_chan[] =;

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

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

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

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

static void max2820_rf_stop(struct ieee80211_hw *dev)
{}


static void max2820_rf_init(struct ieee80211_hw *dev)
{}

const struct rtl818x_rf_ops max2820_rf_ops =;