From 530877d8ddf300d9553e493398117ddecc274ffd Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Thu, 23 Jan 2014 09:08:14 -0800 Subject: [PATCH] Staging: rtl8821ae: rc.c: fix up function prototypes These function parameters are incorrect for the callbacks. Luckily the functions don't actually do anything, so the code still "works" just fine... Cc: Larry Finger Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8821ae/rc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/staging/rtl8821ae/rc.c b/drivers/staging/rtl8821ae/rc.c index 70afdceb991b..d387f13ea7dc 100644 --- a/drivers/staging/rtl8821ae/rc.c +++ b/drivers/staging/rtl8821ae/rc.c @@ -228,6 +228,7 @@ static void rtl_tx_status(void *ppriv, static void rtl_rate_init(void *ppriv, struct ieee80211_supported_band *sband, + struct cfg80211_chan_def *chandef, struct ieee80211_sta *sta, void *priv_sta) { } @@ -242,6 +243,7 @@ static void rtl_rate_update(void *ppriv, #else static void rtl_rate_update(void *ppriv, struct ieee80211_supported_band *sband, + struct cfg80211_chan_def *chandef, struct ieee80211_sta *sta, void *priv_sta, u32 changed) { -- 2.34.1