OSDN Git Service

staging: most: Change bool init to true/false
authorJamal Shareef <jamal.k.shareef@gmail.com>
Thu, 24 Oct 2019 22:39:37 +0000 (15:39 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Oct 2019 03:03:00 +0000 (23:03 -0400)
 Bool initializations should use true and false.  Bool tests don't need
 comparisons.  Based on contributions from Joe Perches, Rusty Russell
 and Bruce W Allan.

 The semantic patch that makes this report is available
 in scripts/coccinelle/misc/boolinit.cocci.

 More information about semantic patching is available at
 http://coccinelle.lip6.fr/

Signed-off-by: Jamal Shareef <jamal.k.shareef@gmail.com>
Link: https://lore.kernel.org/r/20191024223937.2800-1-jamal.k.shareef@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/configfs.c

index 0254956..64c65c2 100644 (file)
@@ -487,7 +487,7 @@ static struct config_item *most_snd_grp_make_item(struct config_group *group,
                return ERR_PTR(-ENOMEM);
 
        config_item_init_type_name(&mdev_link->item, name, &mdev_link_type);
-       mdev_link->create_link = 0;
+       mdev_link->create_link = false;
        strcpy(mdev_link->name, name);
        strcpy(mdev_link->comp, "sound");
        return &mdev_link->item;