Re: [PATCH] ath10k: Fix cleanup in ath10k_thermal_unregister

2015-10-13 Thread Kalle Valo
Mohammed Shafi Shajakhan  writes:

> From: Mohammed Shafi Shajakhan 
>
> First remove the 'cooling_device#n' syslink created
> for ath10k and then unregsiter from the thermal subsystem(cooling)
>
> Signed-off-by: Mohammed Shafi Shajakhan 

Applied, thanks.

-- 
Kalle Valo
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] ath10k: Fix cleanup in ath10k_thermal_unregister

2015-10-08 Thread Mohammed Shafi Shajakhan
From: Mohammed Shafi Shajakhan 

First remove the 'cooling_device#n' syslink created
for ath10k and then unregsiter from the thermal subsystem(cooling)

Signed-off-by: Mohammed Shafi Shajakhan 
---
 drivers/net/wireless/ath/ath10k/thermal.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/thermal.c 
b/drivers/net/wireless/ath/ath10k/thermal.c
index 1a899d7..60fe562 100644
--- a/drivers/net/wireless/ath/ath10k/thermal.c
+++ b/drivers/net/wireless/ath/ath10k/thermal.c
@@ -215,6 +215,6 @@ err_cooling_destroy:
 
 void ath10k_thermal_unregister(struct ath10k *ar)
 {
-   thermal_cooling_device_unregister(ar->thermal.cdev);
sysfs_remove_link(>dev->kobj, "cooling_device");
+   thermal_cooling_device_unregister(ar->thermal.cdev);
 }
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html