mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 16:07:39 +00:00
staging: vt6655: Rename macro MACvSelectPage0
Rename MACvSelectPage0 macro to VT6655_MAC_SELECT_PAGE0 to avoid CamelCase which is not accepted by checkpatch.pl and to clean up namespace. Remove unnecessary line break. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/a656aa0e04c43654ba22b764cb00e27898efbe5f.1661666677.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b1d3ecbf14
commit
54765727cf
5 changed files with 8 additions and 9 deletions
|
@ -643,7 +643,7 @@ void CARDvSetRSPINF(struct vnt_private *priv, u8 bb_type)
|
|||
&byRsvTime);
|
||||
iowrite16(MAKEWORD(byTxRate, byRsvTime), priv->port_offset + MAC_REG_RSPINF_A_72);
|
||||
/* Set to Page0 */
|
||||
MACvSelectPage0(priv->port_offset);
|
||||
VT6655_MAC_SELECT_PAGE0(priv->port_offset);
|
||||
|
||||
spin_unlock_irqrestore(&priv->lock, flags);
|
||||
}
|
||||
|
|
|
@ -121,7 +121,7 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
|
|||
iowrite8(priv->byCurPwr, priv->port_offset + MAC_REG_PWRCCK);
|
||||
RFbSetPower(priv, RATE_6M, priv->byCurrentCh);
|
||||
iowrite8(priv->byCurPwr, priv->port_offset + MAC_REG_PWROFDM);
|
||||
MACvSelectPage0(priv->port_offset);
|
||||
VT6655_MAC_SELECT_PAGE0(priv->port_offset);
|
||||
|
||||
spin_unlock_irqrestore(&priv->lock, flags);
|
||||
}
|
||||
|
|
|
@ -404,7 +404,7 @@ static void device_init_registers(struct vnt_private *priv)
|
|||
|
||||
iowrite8(MSRCTL1_TXPWR | MSRCTL1_CSAPAREN, priv->port_offset + MAC_REG_MSRCTL + 1);
|
||||
|
||||
MACvSelectPage0(priv->port_offset);
|
||||
VT6655_MAC_SELECT_PAGE0(priv->port_offset);
|
||||
}
|
||||
|
||||
/* use relative tx timeout and 802.11i D4 */
|
||||
|
@ -1592,7 +1592,7 @@ static void vnt_configure(struct ieee80211_hw *hw,
|
|||
iowrite32(0xffffffff, priv->port_offset + MAC_REG_MAR0);
|
||||
iowrite32(0xffffffff, priv->port_offset + MAC_REG_MAR0 + 4);
|
||||
|
||||
MACvSelectPage0(priv->port_offset);
|
||||
VT6655_MAC_SELECT_PAGE0(priv->port_offset);
|
||||
} else {
|
||||
MACvSelectPage1(priv->port_offset);
|
||||
|
||||
|
@ -1601,7 +1601,7 @@ static void vnt_configure(struct ieee80211_hw *hw,
|
|||
iowrite32((u32)(multicast >> 32),
|
||||
priv->port_offset + MAC_REG_MAR0 + 4);
|
||||
|
||||
MACvSelectPage0(priv->port_offset);
|
||||
VT6655_MAC_SELECT_PAGE0(priv->port_offset);
|
||||
}
|
||||
|
||||
spin_unlock_irqrestore(&priv->lock, flags);
|
||||
|
|
|
@ -219,7 +219,7 @@ void MACvSaveContext(struct vnt_private *priv, unsigned char *cxt_buf)
|
|||
memcpy_fromio(cxt_buf + MAC_MAX_CONTEXT_SIZE_PAGE0, io_base,
|
||||
MAC_MAX_CONTEXT_SIZE_PAGE1);
|
||||
|
||||
MACvSelectPage0(io_base);
|
||||
VT6655_MAC_SELECT_PAGE0(io_base);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -245,7 +245,7 @@ void MACvRestoreContext(struct vnt_private *priv, unsigned char *cxt_buf)
|
|||
memcpy_toio(io_base, cxt_buf + MAC_MAX_CONTEXT_SIZE_PAGE0,
|
||||
MAC_MAX_CONTEXT_SIZE_PAGE1);
|
||||
|
||||
MACvSelectPage0(io_base);
|
||||
VT6655_MAC_SELECT_PAGE0(io_base);
|
||||
|
||||
/* restore RCR,TCR,IMR... */
|
||||
memcpy_toio(io_base + MAC_REG_RCR, cxt_buf + MAC_REG_RCR,
|
||||
|
|
|
@ -537,8 +537,7 @@
|
|||
|
||||
/*--------------------- Export Macros ------------------------------*/
|
||||
|
||||
#define MACvSelectPage0(iobase) \
|
||||
iowrite8(0, iobase + MAC_REG_PAGE1SEL)
|
||||
#define VT6655_MAC_SELECT_PAGE0(iobase) iowrite8(0, iobase + MAC_REG_PAGE1SEL)
|
||||
|
||||
#define MACvSelectPage1(iobase) \
|
||||
iowrite8(1, iobase + MAC_REG_PAGE1SEL)
|
||||
|
|
Loading…
Reference in a new issue