projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c656ead
)
[media] dm1105: remove unneeded not-null test
author
Alexandru Juncu
<alexj@rosedu.org>
Wed, 4 Sep 2013 14:41:34 +0000
(11:41 -0300)
committer
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Thu, 31 Oct 2013 06:53:40 +0000
(
04:53
-0200)
i2c_adap is a field of a struct and will always be allocated so
its address will never be null.
Suggested by coccinelle, manually verified.
Signed-off-by: Alexandru Juncu <alexj@rosedu.org>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/pci/dm1105/dm1105.c
patch
|
blob
|
history
diff --git
a/drivers/media/pci/dm1105/dm1105.c
b/drivers/media/pci/dm1105/dm1105.c
index e985e3b0f6479b873aefad108343695c56a60517..e60ac35fc10c734dd8b31f7901a23347653dcc99 100644
(file)
--- a/
drivers/media/pci/dm1105/dm1105.c
+++ b/
drivers/media/pci/dm1105/dm1105.c
@@
-1201,8
+1201,7
@@
static void dm1105_remove(struct pci_dev *pdev)
dvb_dmxdev_release(&dev->dmxdev);
dvb_dmx_release(dvbdemux);
dvb_unregister_adapter(dvb_adapter);
- if (&dev->i2c_adap)
- i2c_del_adapter(&dev->i2c_adap);
+ i2c_del_adapter(&dev->i2c_adap);
dm1105_hw_exit(dev);
synchronize_irq(pdev->irq);