From: Glen Lee Date: Thu, 4 Feb 2016 09:15:20 +0000 (+0900) Subject: staging: wilc1000: ignore power save X-Git-Tag: v4.6~331^2~1316 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff9d65abc8561d67313cd310dc15d2f496282a92;p=platform%2Fkernel%2Flinux-amlogic.git staging: wilc1000: ignore power save If two interfaces are connected and it is required to enable power save then ignore the request. Signed-off-by: Glen Lee Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 1dc6af0..7e1b5a0 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -4341,6 +4341,9 @@ int wilc_set_power_mgmt(struct wilc_vif *vif, bool enabled, u32 timeout) return -EFAULT; } + if (wilc_wlan_get_num_conn_ifcs(vif->wilc) == 2 && enabled) + return 0; + PRINT_D(HOSTINF_DBG, "Setting Power management message queue params\n"); memset(&msg, 0, sizeof(struct host_if_msg));