diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-06 20:36:29 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 08:39:33 -0800 |
commit | 3316eaa31e638d21dfa4a81a3322f8898981c591 (patch) | |
tree | 7059d04a451512a4861bd0b2dd80c5e74e37e774 /drivers | |
parent | e6c4021190c828d7fa24a464db589f86c6708341 (diff) | |
download | linux-3316eaa31e638d21dfa4a81a3322f8898981c591.tar.gz linux-3316eaa31e638d21dfa4a81a3322f8898981c591.tar.bz2 linux-3316eaa31e638d21dfa4a81a3322f8898981c591.zip |
[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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/misc/tifm_core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/misc/tifm_core.c b/drivers/misc/tifm_core.c index ee326136d03b..d61df5c3ac36 100644 --- a/drivers/misc/tifm_core.c +++ b/drivers/misc/tifm_core.c @@ -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); |