commit | 76b1cf211cbe120a2d6c46403abc97d4376c619e | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sun Sep 13 14:15:25 2015 +0200 |
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | Wed Sep 30 10:44:08 2015 +0200 |
tree | 15a1f13988ac9466c00948ab687263e7166567f0 | |
parent | 5507faeb03f87f952373314b21741548421a6944 [diff] |
drm: i915: drop null test before destroy functions Remove unneeded NULL test. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x; @@ -if (x != NULL) \(kmem_cache_destroy\|mempool_destroy\|dma_pool_destroy\)(x); // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>