mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
wifi: mt76: mt7921: get rid of eeprom.h
eeprom.h is mostly empty for mt7921, so get rid of it. Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
6a8b899df1
commit
50cc972dde
|
|
@ -2,7 +2,6 @@
|
|||
/* Copyright (C) 2020 MediaTek Inc. */
|
||||
|
||||
#include "mt7921.h"
|
||||
#include "eeprom.h"
|
||||
|
||||
static int
|
||||
mt7921_reg_set(void *data, u64 val)
|
||||
|
|
|
|||
|
|
@ -1,30 +0,0 @@
|
|||
/* SPDX-License-Identifier: ISC */
|
||||
/* Copyright (C) 2020 MediaTek Inc. */
|
||||
|
||||
#ifndef __MT7921_EEPROM_H
|
||||
#define __MT7921_EEPROM_H
|
||||
|
||||
#include "mt7921.h"
|
||||
|
||||
enum mt7921_eeprom_field {
|
||||
MT_EE_CHIP_ID = 0x000,
|
||||
MT_EE_VERSION = 0x002,
|
||||
MT_EE_MAC_ADDR = 0x004,
|
||||
MT_EE_WIFI_CONF = 0x07c,
|
||||
MT_EE_HW_TYPE = 0x55b,
|
||||
__MT_EE_MAX = 0x9ff
|
||||
};
|
||||
|
||||
#define MT_EE_WIFI_CONF_TX_MASK BIT(0)
|
||||
#define MT_EE_WIFI_CONF_BAND_SEL GENMASK(3, 2)
|
||||
|
||||
#define MT_EE_HW_TYPE_ENCAP BIT(0)
|
||||
|
||||
enum mt7921_eeprom_band {
|
||||
MT_EE_NA,
|
||||
MT_EE_5GHZ,
|
||||
MT_EE_2GHZ,
|
||||
MT_EE_DUAL_BAND,
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
@ -6,7 +6,6 @@
|
|||
#include "mt7921.h"
|
||||
#include "mac.h"
|
||||
#include "mcu.h"
|
||||
#include "eeprom.h"
|
||||
|
||||
static const struct ieee80211_iface_limit if_limits[] = {
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
#include <linux/firmware.h>
|
||||
#include "mt7921.h"
|
||||
#include "mt7921_trace.h"
|
||||
#include "eeprom.h"
|
||||
#include "mcu.h"
|
||||
#include "mac.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -266,6 +266,17 @@ struct mt7921_phy {
|
|||
bool roc_grant;
|
||||
};
|
||||
|
||||
enum mt7921_eeprom_field {
|
||||
MT_EE_CHIP_ID = 0x000,
|
||||
MT_EE_VERSION = 0x002,
|
||||
MT_EE_MAC_ADDR = 0x004,
|
||||
MT_EE_WIFI_CONF = 0x07c,
|
||||
MT_EE_HW_TYPE = 0x55b,
|
||||
__MT_EE_MAX = 0x9ff
|
||||
};
|
||||
|
||||
#define MT_EE_HW_TYPE_ENCAP BIT(0)
|
||||
|
||||
#define mt7921_init_reset(dev) ((dev)->hif_ops->init_reset(dev))
|
||||
#define mt7921_dev_reset(dev) ((dev)->hif_ops->reset(dev))
|
||||
#define mt7921_mcu_init(dev) ((dev)->hif_ops->mcu_init(dev))
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user