staging: vt6655: Rename function MACbSafeTxOff
Rename function MACbSafeTxOff to vt6655_mac_safe_tx_off to avoid CamelCase which is not accepted by checkpatch.pl. Remove unnecessary declaration of function and make function static. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/50211bbdd866be93fe9ea912a433e56460bf7f28.1662890990.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
de8a86a1ff
commit
481602794c
@ -18,7 +18,7 @@
|
||||
* vt6655_mac_restore_context - Restore Context of MAC Registers
|
||||
* MACbSoftwareReset - Software Reset MAC
|
||||
* vt6655_mac_safe_rx_off - Turn Off MAC Rx
|
||||
* MACbSafeTxOff - Turn Off MAC Tx
|
||||
* vt6655_mac_safe_tx_off - Turn Off MAC Tx
|
||||
* MACbSafeStop - Stop MAC function
|
||||
* MACbShutdown - Shut down MAC
|
||||
* MACvInitialize - Initialize MAC
|
||||
@ -376,7 +376,7 @@ static bool vt6655_mac_safe_rx_off(struct vnt_private *priv)
|
||||
* Return Value: true if success; otherwise false
|
||||
*
|
||||
*/
|
||||
bool MACbSafeTxOff(struct vnt_private *priv)
|
||||
static bool vt6655_mac_safe_tx_off(struct vnt_private *priv)
|
||||
{
|
||||
void __iomem *io_base = priv->port_offset;
|
||||
unsigned short ww;
|
||||
@ -443,8 +443,8 @@ bool MACbSafeStop(struct vnt_private *priv)
|
||||
vt6655_mac_save_soft_reset(priv);
|
||||
return false;
|
||||
}
|
||||
if (!MACbSafeTxOff(priv)) {
|
||||
pr_debug(" MACbSafeTxOff == false)\n");
|
||||
if (!vt6655_mac_safe_tx_off(priv)) {
|
||||
pr_debug(" vt6655_mac_safe_tx_off == false)\n");
|
||||
vt6655_mac_save_soft_reset(priv);
|
||||
return false;
|
||||
}
|
||||
|
@ -554,7 +554,6 @@ void vt6655_mac_set_short_retry_limit(struct vnt_private *priv, unsigned char re
|
||||
void MACvSetLongRetryLimit(struct vnt_private *priv, unsigned char byRetryLimit);
|
||||
|
||||
bool MACbSoftwareReset(struct vnt_private *priv);
|
||||
bool MACbSafeTxOff(struct vnt_private *priv);
|
||||
bool MACbSafeStop(struct vnt_private *priv);
|
||||
bool MACbShutdown(struct vnt_private *priv);
|
||||
void MACvInitialize(struct vnt_private *priv);
|
||||
|
Loading…
x
Reference in New Issue
Block a user