Commit fc62d5e2 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Dipen Patel

hte: Use kasprintf() instead of fixed buffer formatting

Improve readability and maintainability by replacing a hardcoded string
allocation and formatting by the use of the kasprintf() helper.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarDipen Patel <dipenp@nvidia.com>
Signed-off-by: default avatarDipen Patel <dipenp@nvidia.com>
parent b7c3ca35
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
#include <linux/debugfs.h> #include <linux/debugfs.h>
#include <linux/device.h> #include <linux/device.h>
#define HTE_TS_NAME_LEN 10
/* Global list of the HTE devices */ /* Global list of the HTE devices */
static DEFINE_SPINLOCK(hte_lock); static DEFINE_SPINLOCK(hte_lock);
static LIST_HEAD(hte_devices); static LIST_HEAD(hte_devices);
...@@ -389,13 +387,10 @@ static int __hte_req_ts(struct hte_ts_desc *desc, hte_ts_cb_t cb, ...@@ -389,13 +387,10 @@ static int __hte_req_ts(struct hte_ts_desc *desc, hte_ts_cb_t cb,
atomic_inc(&gdev->ts_req); atomic_inc(&gdev->ts_req);
if (desc->attr.name)
ei->line_name = NULL; ei->line_name = NULL;
if (!desc->attr.name) { else
ei->line_name = kzalloc(HTE_TS_NAME_LEN, GFP_KERNEL); ei->line_name = kasprintf(GFP_KERNEL, "ts_%u", desc->attr.line_id);
if (ei->line_name)
scnprintf(ei->line_name, HTE_TS_NAME_LEN, "ts_%u",
desc->attr.line_id);
}
hte_ts_dbgfs_init(desc->attr.name == NULL ? hte_ts_dbgfs_init(desc->attr.name == NULL ?
ei->line_name : desc->attr.name, ei); ei->line_name : desc->attr.name, ei);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment