input: touchscreen: fix tp_suspend.h compilation warning
author黄涛 <huangtao@rock-chips.com>
Mon, 16 Jun 2014 12:26:56 +0000 (20:26 +0800)
committer黄涛 <huangtao@rock-chips.com>
Mon, 16 Jun 2014 12:26:56 +0000 (20:26 +0800)
drivers/input/touchscreen/tp_suspend.h

index 68e3d58fec17650596a057c876c45da51ce23606..bf23e868e7703b5911407508528f8e7db0c494a5 100644 (file)
@@ -20,7 +20,7 @@ struct  tp_device{
        struct mutex ops_lock;
 };
 
-static int fb_notifier_callback(struct notifier_block *self,
+static inline int fb_notifier_callback(struct notifier_block *self,
                                unsigned long action, void *data)
 {
        struct tp_device *tp;
@@ -63,7 +63,7 @@ static int fb_notifier_callback(struct notifier_block *self,
        return NOTIFY_OK;
 }
 
-static int tp_register_fb(struct tp_device *tp)
+static inline int tp_register_fb(struct tp_device *tp)
 {
        memset(&tp->fb_notif, 0, sizeof(tp->fb_notif));
        tp->fb_notif.notifier_call = fb_notifier_callback;
@@ -72,7 +72,7 @@ static int tp_register_fb(struct tp_device *tp)
        return fb_register_client(&tp->fb_notif);
 }
 
-static void tp_unregister_fb(struct tp_device *tp)
+static inline void tp_unregister_fb(struct tp_device *tp)
 {
        fb_unregister_client(&tp->fb_notif);
 }