mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[media] firewire: Deletion of an unnecessary check before the function call "dvb_unregister_device"
The dvb_unregister_device() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Reviewed-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
9a7a848df1
commit
d3fe22fab7
1 changed files with 1 additions and 2 deletions
|
@ -253,6 +253,5 @@ int fdtv_ca_register(struct firedtv *fdtv)
|
|||
|
||||
void fdtv_ca_release(struct firedtv *fdtv)
|
||||
{
|
||||
if (fdtv->cadev)
|
||||
dvb_unregister_device(fdtv->cadev);
|
||||
dvb_unregister_device(fdtv->cadev);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue