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

Commit 46234cc5 authored by Iker Pedrosa's avatar Iker Pedrosa Committed by Greg Kroah-Hartman
Browse files

Staging: winbond: mto: avoided use of extern functions



Prototype of two functions added to the header to avoid the use of extern.

Signed-off-by: default avatarIker Pedrosa <ikerpedrosam@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7a0b6c62
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include "wbhal.h"
#include "wb35reg_f.h"
#include "core.h"
#include "mto.h"

/* Declare SQ3 to rate and fragmentation threshold table */
/* Declare fragmentation threshold table */
@@ -45,9 +46,6 @@ static int retryrate_rec[MTO_MAX_DATA_RATE_LEVELS];

static u8 boSparseTxTraffic;

void MTO_Init(struct wbsoft_priv *adapter);
void MTO_SetTxCount(struct wbsoft_priv *adapter, u8 t0, u8 index);

/*
 * ===========================================================================
 * MTO_Init --
+2 −2
Original line number Diff line number Diff line
@@ -127,12 +127,12 @@ extern u16 MTO_Frag_Th_Tbl[];
#define MTO_DATA_RATE()			MTO_Data_Rate_Tbl[MTO_RATE_LEVEL()]
#define MTO_FRAG_TH()			MTO_Frag_Th_Tbl[MTO_FRAG_TH_LEVEL()]

extern void MTO_Init(struct wbsoft_priv *);
void MTO_Init(struct wbsoft_priv *);
void MTO_SetTxCount(struct wbsoft_priv *adapter, u8 t0, u8 index);
extern void MTO_PeriodicTimerExpired(struct wbsoft_priv *);
extern void MTO_SetDTORateRange(struct wbsoft_priv *, u8 *, u8);
extern u8 MTO_GetTxRate(struct wbsoft_priv *adapter, u32 fpdu_len);
extern u8 MTO_GetTxFallbackRate(struct wbsoft_priv *adapter);
extern void MTO_SetTxCount(struct wbsoft_priv *adapter, u8 t0, u8 index);

#endif /* __MTO_H__ */