diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-11-20 11:30:17 +0100 |
---|---|---|
committer | Matt Fleming <matt@codeblueprint.co.uk> | 2015-12-14 16:24:03 +0100 |
commit | 7f83773ced2f9f41dec5e6eb3eb4a7ef23ca1d75 (patch) | |
tree | 04f7e7871c6d20bf2ef8679e8e67d715cad08349 /drivers/firmware | |
parent | Linux 4.4-rc1 (diff) | |
download | linux-7f83773ced2f9f41dec5e6eb3eb4a7ef23ca1d75.tar.xz linux-7f83773ced2f9f41dec5e6eb3eb4a7ef23ca1d75.zip |
efi/esrt: Don't preformat name
kobject_init_and_add takes a format string+args, so there's no reason
to do this formatting in advance.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Peter Jones <pjones@redhat.com>
Signed-off-by: Matt Fleming <matt@codeblueprint.co.uk>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/efi/esrt.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/firmware/efi/esrt.c b/drivers/firmware/efi/esrt.c index 22c5285f7705..75feb3f5829b 100644 --- a/drivers/firmware/efi/esrt.c +++ b/drivers/firmware/efi/esrt.c @@ -167,14 +167,11 @@ static struct kset *esrt_kset; static int esre_create_sysfs_entry(void *esre, int entry_num) { struct esre_entry *entry; - char name[20]; entry = kzalloc(sizeof(*entry), GFP_KERNEL); if (!entry) return -ENOMEM; - sprintf(name, "entry%d", entry_num); - entry->kobj.kset = esrt_kset; if (esrt->fw_resource_version == 1) { @@ -182,7 +179,7 @@ static int esre_create_sysfs_entry(void *esre, int entry_num) entry->esre.esre1 = esre; rc = kobject_init_and_add(&entry->kobj, &esre1_ktype, NULL, - "%s", name); + "entry%d", entry_num); if (rc) { kfree(entry); return rc; |