staging: greybus: Add identifier name to function definition argument
authorAsif Talybov <talybov.asif@yandex.ru>
Sun, 16 Aug 2020 03:31:09 +0000 (10:31 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Aug 2020 14:07:17 +0000 (16:07 +0200)
WARNING: function definition argument 'struct gbphy_device *' should also
have an identifier name
+       int (*probe)(struct gbphy_device *,

WARNING: function definition argument 'struct gbphy_device *' should also
have an identifier name
+       void (*remove)(struct gbphy_device *);

Signed-off-by: Asif Talybov <talybov.asif@yandex.ru>
Link: https://lore.kernel.org/r/20200816033109.3930-1-talybov.asif@yandex.ru
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/gbphy.h

index 087928a..d4a225b 100644 (file)
@@ -36,9 +36,9 @@ struct gbphy_device_id {
 
 struct gbphy_driver {
        const char *name;
-       int (*probe)(struct gbphy_device *,
+       int (*probe)(struct gbphy_device *device,
                     const struct gbphy_device_id *id);
-       void (*remove)(struct gbphy_device *);
+       void (*remove)(struct gbphy_device *device);
        const struct gbphy_device_id *id_table;
 
        struct device_driver driver;