mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: most: Change bool init to true/false
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>
This commit is contained in:
parent
77b97aa69b
commit
c671dfdaed
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user