drivers: base: swnode: remove need for a temporary string for the node name
authorColin Ian King <colin.king@canonical.com>
Thu, 6 Dec 2018 17:05:57 +0000 (17:05 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 11 Dec 2018 11:18:15 +0000 (12:18 +0100)
commitd84f18d6673f6d93bddfce1aea6cfdd78b822d3e
tree5a3de28afb7b25be7056a8cb0fe1f4187b92ca39
parentcaf35cd52242a0a184e0530f9814ab50759fa772
drivers: base: swnode: remove need for a temporary string for the node name

Currently the node name is being formatting into a temporary string
node_name, however, kobject_init_and_add allows one to format up
a node name, so use that instead. This removes the need for the
node_name string and also cleans up the following warning:

Fixes clang warning:
warning: format string is not a string literal (potentially
insecure) [-Wformat-security]

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/swnode.c