remove the lq_sta local variable and return the
result directly in il4965_rs_alloc_sta
Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
static void *
il4965_rs_alloc_sta(void *il_rate, struct ieee80211_sta *sta, gfp_t gfp)
{
- struct il_lq_sta *lq_sta;
struct il_station_priv *sta_priv =
(struct il_station_priv *)sta->drv_priv;
struct il_priv *il;
il = (struct il_priv *)il_rate;
D_RATE("create station rate scale win\n");
- lq_sta = &sta_priv->lq_sta;
-
- return lq_sta;
+ return &sta_priv->lq_sta;
}
/*