Input: allow passing NULL to input_free_device()
authorDmitry Torokhov <dtor_core@ameritech.net>
Wed, 26 Apr 2006 04:13:57 +0000 (00:13 -0400)
committerDmitry Torokhov <dtor_core@ameritech.net>
Wed, 26 Apr 2006 04:13:57 +0000 (00:13 -0400)
Many drivers rely on input_free_device() behaving like kfree().

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
include/linux/input.h

index b0e612d..16c19d7 100644 (file)
@@ -1016,7 +1016,8 @@ static inline void input_put_device(struct input_dev *dev)
 
 static inline void input_free_device(struct input_dev *dev)
 {
-       input_put_device(dev);
+       if (dev)
+               input_put_device(dev);
 }
 
 int input_register_device(struct input_dev *);