notifier: change the function name for unregistering device notification 25/34925/4
authortaeyoung <ty317.kim@samsung.com>
Wed, 4 Feb 2015 11:15:42 +0000 (20:15 +0900)
committertaeyoung <ty317.kim@samsung.com>
Tue, 10 Feb 2015 11:22:45 +0000 (20:22 +0900)
- There is a mismatching for the function name between the prototype
  and its implementation. Thus the name is changed correctly.

  unregister_notifier_del() -> unregister_notifier()

Change-Id: I5387aae2837d457d0ad610e767e0979ea38a67e5
Signed-off-by: taeyoung <ty317.kim@samsung.com>
src/core/device-notifier.h

index 9e32fce..597217a 100644 (file)
@@ -41,7 +41,7 @@ enum device_notifier_type {
  * This is for internal callback method.
  */
 int register_notifier(enum device_notifier_type status, int (*func)(void *data));
-int unregister_notifier_del(enum device_notifier_type status, int (*func)(void *data));
+int unregister_notifier(enum device_notifier_type status, int (*func)(void *data));
 void device_notify(enum device_notifier_type status, void *value);
 
 #endif /* __DEVICE_NOTIFIER_H__ */