|
@@ -15,19 +15,19 @@
|
|
|
*/
|
|
|
|
|
|
/**
|
|
|
- * DOC: wlan_hdd_sysfs_set_wlan_dbg.c
|
|
|
+ * DOC: wlan_hdd_sysfs_wlan_dbg.c
|
|
|
*
|
|
|
- * implementation for creating sysfs file wlan_dbg
|
|
|
+ * Implementation for creating sysfs file wlan_dbg
|
|
|
*/
|
|
|
|
|
|
#include <wlan_hdd_includes.h>
|
|
|
#include "osif_psoc_sync.h"
|
|
|
#include <wlan_hdd_sysfs.h>
|
|
|
-#include <wlan_hdd_sysfs_set_wlan_dbg.h>
|
|
|
+#include <wlan_hdd_sysfs_wlan_dbg.h>
|
|
|
|
|
|
static ssize_t
|
|
|
-__hdd_sysfs_set_wlan_dbg_store(struct hdd_context *hdd_ctx,
|
|
|
- struct kobj_attribute *attr,
|
|
|
+__hdd_sysfs_wlan_dbg_store(struct hdd_context *hdd_ctx,
|
|
|
+ struct kobj_attribute *attr,
|
|
|
const char *buf, size_t count)
|
|
|
{
|
|
|
char buf_local[MAX_SYSFS_USER_COMMAND_SIZE_LENGTH + 1];
|
|
@@ -76,9 +76,9 @@ __hdd_sysfs_set_wlan_dbg_store(struct hdd_context *hdd_ctx,
|
|
|
}
|
|
|
|
|
|
static ssize_t
|
|
|
-hdd_sysfs_set_wlan_dbg_store(struct kobject *kobj,
|
|
|
- struct kobj_attribute *attr,
|
|
|
- const char *buf, size_t count)
|
|
|
+hdd_sysfs_wlan_dbg_store(struct kobject *kobj,
|
|
|
+ struct kobj_attribute *attr,
|
|
|
+ const char *buf, size_t count)
|
|
|
{
|
|
|
struct osif_psoc_sync *psoc_sync;
|
|
|
struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
|
|
@@ -94,8 +94,8 @@ hdd_sysfs_set_wlan_dbg_store(struct kobject *kobj,
|
|
|
if (errno_size)
|
|
|
return errno_size;
|
|
|
|
|
|
- errno_size = __hdd_sysfs_set_wlan_dbg_store(hdd_ctx, attr,
|
|
|
- buf, count);
|
|
|
+ errno_size = __hdd_sysfs_wlan_dbg_store(hdd_ctx, attr,
|
|
|
+ buf, count);
|
|
|
|
|
|
osif_psoc_sync_op_stop(psoc_sync);
|
|
|
|
|
@@ -104,9 +104,9 @@ hdd_sysfs_set_wlan_dbg_store(struct kobject *kobj,
|
|
|
|
|
|
static struct kobj_attribute set_wlan_dbg_attribute =
|
|
|
__ATTR(wlan_dbg, 0220, NULL,
|
|
|
- hdd_sysfs_set_wlan_dbg_store);
|
|
|
+ hdd_sysfs_wlan_dbg_store);
|
|
|
|
|
|
-int hdd_sysfs_set_wlan_dbg_create(struct kobject *driver_kobject)
|
|
|
+int hdd_sysfs_wlan_dbg_create(struct kobject *driver_kobject)
|
|
|
{
|
|
|
int error;
|
|
|
|
|
@@ -124,7 +124,7 @@ int hdd_sysfs_set_wlan_dbg_create(struct kobject *driver_kobject)
|
|
|
}
|
|
|
|
|
|
void
|
|
|
-hdd_sysfs_set_wlan_dbg_destroy(struct kobject *driver_kobject)
|
|
|
+hdd_sysfs_wlan_dbg_destroy(struct kobject *driver_kobject)
|
|
|
{
|
|
|
if (!driver_kobject) {
|
|
|
hdd_err("could not get driver kobject!");
|