|
@@ -4354,11 +4354,39 @@ out:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 2, 0))
|
|
|
+union cnss_device_group_devres {
|
|
|
+ const struct attribute_group *group;
|
|
|
+};
|
|
|
+
|
|
|
+static void devm_cnss_group_remove(struct device *dev, void *res)
|
|
|
+{
|
|
|
+ union cnss_device_group_devres *devres = res;
|
|
|
+ const struct attribute_group *group = devres->group;
|
|
|
+
|
|
|
+ cnss_pr_dbg("%s: removing group %p\n", __func__, group);
|
|
|
+ sysfs_remove_group(&dev->kobj, group);
|
|
|
+}
|
|
|
+
|
|
|
+static int devm_cnss_group_match(struct device *dev, void *res, void *data)
|
|
|
+{
|
|
|
+ return ((union cnss_device_group_devres *)res) == data;
|
|
|
+}
|
|
|
+
|
|
|
+static void cnss_remove_sysfs(struct cnss_plat_data *plat_priv)
|
|
|
+{
|
|
|
+ cnss_remove_sysfs_link(plat_priv);
|
|
|
+ WARN_ON(devres_release(&plat_priv->plat_dev->dev,
|
|
|
+ devm_cnss_group_remove, devm_cnss_group_match,
|
|
|
+ (void *)&cnss_attr_group));
|
|
|
+}
|
|
|
+#else
|
|
|
static void cnss_remove_sysfs(struct cnss_plat_data *plat_priv)
|
|
|
{
|
|
|
cnss_remove_sysfs_link(plat_priv);
|
|
|
devm_device_remove_group(&plat_priv->plat_dev->dev, &cnss_attr_group);
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
static int cnss_event_work_init(struct cnss_plat_data *plat_priv)
|
|
|
{
|