From: Larry Finger Date: Mon, 26 May 2014 19:06:06 +0000 (-0500) Subject: staging: r8821ae: Fix potential problem with rate control registration X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9c0b41d43d8c9c4b182cfb89dce29da6dd33692d;p=deliverable%2Flinux.git staging: r8821ae: Fix potential problem with rate control registration The zero day testing facility reported a problem with duplicate registration of the rate-control algorithm. Although not yet reported, this driver needs the same fix. Signed-off-by: Larry Finger Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8821ae/rc.c b/drivers/staging/rtl8821ae/rc.c index 0cc32c60ddee..a5a09baa99c5 100644 --- a/drivers/staging/rtl8821ae/rc.c +++ b/drivers/staging/rtl8821ae/rc.c @@ -286,7 +286,7 @@ static void rtl_rate_free_sta(void *rtlpriv, } static struct rate_control_ops rtl_rate_ops = { - .name = "rtl_rc", + .name = "rtl_rc_21ae", .alloc = rtl_rate_alloc, .free = rtl_rate_free, .alloc_sta = rtl_rate_alloc_sta,