drivers: base: Use __printf markup to silence compiler
authorMathieu Malaterre <malat@debian.org>
Wed, 23 Jan 2019 19:42:00 +0000 (20:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 Jan 2019 18:28:40 +0000 (19:28 +0100)
Silence warnings (triggered at W=1) by adding relevant __printf
attributes.

  drivers/base/cpu.c:432:2: warning: function '__cpu_device_create' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]

Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/cpu.c

index eb9443d..de74d7d 100644 (file)
@@ -409,6 +409,7 @@ static void device_create_release(struct device *dev)
        kfree(dev);
 }
 
+__printf(4, 0)
 static struct device *
 __cpu_device_create(struct device *parent, void *drvdata,
                    const struct attribute_group **groups,