Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2331ba42 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: clean up and rename wFB_Opt1 to vnt_fb_opt1

parent e3f31874
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -62,9 +62,9 @@ static const u16 vnt_fb_opt0[2][5] = {
	{RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, /* fallback_rate1 */
};

static const u16 wFB_Opt1[2][5] = {
        {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, // fallback_rate0
        {RATE_6M , RATE_6M,  RATE_12M, RATE_12M, RATE_18M}, // fallback_rate1
static const u16 vnt_fb_opt1[2][5] = {
	{RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, /* fallback_rate0 */
	{RATE_6M , RATE_6M,  RATE_12M, RATE_12M, RATE_18M}, /* fallback_rate1 */
};

#define RTSDUR_BB       0
@@ -933,9 +933,9 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
			tx_buffer_head->wFIFOCtl |= FIFOCTL_AUTO_FB_1;

			priv->tx_rate_fb0 =
				wFB_Opt1[FB_RATE0][current_rate - RATE_18M];
				vnt_fb_opt1[FB_RATE0][current_rate - RATE_18M];
			priv->tx_rate_fb1 =
				wFB_Opt1[FB_RATE1][current_rate - RATE_18M];
				vnt_fb_opt1[FB_RATE1][current_rate - RATE_18M];

			fb_option = AUTO_FB_1;
		}