diff options
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_memdump.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CORE/HDD/src/wlan_hdd_memdump.c b/CORE/HDD/src/wlan_hdd_memdump.c index cb6947230c30..09deb2e6105c 100644 --- a/CORE/HDD/src/wlan_hdd_memdump.c +++ b/CORE/HDD/src/wlan_hdd_memdump.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2017 The Linux Foundation. All rights reserved. + * Copyright (c) 2015-2018 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -42,14 +42,14 @@ #include <linux/proc_fs.h> /* Necessary because we use the proc fs */ #include <linux/uaccess.h> /* for copy_to_user */ -#define PROCFS_DRIVER_DUMP_DIR "debugdriver" - #ifdef MULTI_IF_NAME -#define PROCFS_DRIVER_DUMP_NAME "driverdump" MULTI_IF_NAME +#define PROCFS_DRIVER_DUMP_DIR "debugdriver" MULTI_IF_NAME #else -#define PROCFS_DRIVER_DUMP_NAME "driverdump" +#define PROCFS_DRIVER_DUMP_DIR "debugdriver" #endif +#define PROCFS_DRIVER_DUMP_NAME "driverdump" + #define PROCFS_DRIVER_DUMP_PERM 0444 static struct proc_dir_entry *proc_file_driver, *proc_dir_driver; |
