mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 06:10:53 +07:00
[PATCH] tifm: fix NULL ptr and style
Fix sparse NULL warning; drivers/misc/tifm_core.c:223:17: warning: Using plain integer as NULL pointer Fix style while there. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e6c4021190
commit
3316eaa31e
@ -219,8 +219,9 @@ static int tifm_device_remove(struct device *dev)
|
||||
struct tifm_driver *drv = fm_dev->drv;
|
||||
|
||||
if (drv) {
|
||||
if (drv->remove) drv->remove(fm_dev);
|
||||
fm_dev->drv = 0;
|
||||
if (drv->remove)
|
||||
drv->remove(fm_dev);
|
||||
fm_dev->drv = NULL;
|
||||
}
|
||||
|
||||
put_device(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user