mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
staging: tidspbridge: remove redundant NULL check before delete_msg_mgr().
delete_msg_mgr on a NULL pointer is a no-op, so the NULL check in bridge_msg_delete can be removed. Signed-off-by: Cyril Roelandt <tipecaml@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ae87d63664
commit
b7e6724238
@ -198,8 +198,7 @@ out_err:
|
||||
*/
|
||||
void bridge_msg_delete(struct msg_mgr *hmsg_mgr)
|
||||
{
|
||||
if (hmsg_mgr)
|
||||
delete_msg_mgr(hmsg_mgr);
|
||||
delete_msg_mgr(hmsg_mgr);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user