server: remove unused request 16/165216/2
authorBoram Park <boram1288.park@samsung.com>
Tue, 26 Dec 2017 09:34:52 +0000 (18:34 +0900)
committerBoram Park <boram1288.park@samsung.com>
Wed, 27 Dec 2017 06:25:20 +0000 (15:25 +0900)
Change-Id: I0aa949b4d9ae69464538f178d733223f43c342d9

protocol/tdm.xml
src/tdm_server.c

index 24c603e..6434e98 100644 (file)
             <arg name="id" type="new_id" interface="wl_tdm_output"/>
         </request>
 
-        <request name="set_client_vblank_fps">
-            <arg name="pid" type="uint"/>
-            <arg name="name" type="string"/>
-            <arg name="fps" type="uint"/>
-        </request>
-
     </interface>
 
     <interface name="wl_tdm_output" version="1">
index 5f88332..e4a3e75 100644 (file)
@@ -740,22 +740,9 @@ _tdm_server_cb_debug(struct wl_client *client, struct wl_resource *resource, con
 }
 /* LCOV_EXCL_STOP */
 
-/* LCOV_EXCL_START */
-static void
-_tdm_server_cb_set_client_vblank_fps(struct wl_client *client, struct wl_resource *resource,
-                                                                        unsigned int pid, const char *name, unsigned int fps)
-{
-       tdm_error ret = tdm_vblank_set_client_vblank_fps(pid, name, fps);
-       TDM_RETURN_IF_FAIL(ret == TDM_ERROR_NONE);
-
-       TDM_INFO("'%s' vblank fps(PID: '%u'): %u", name, pid, fps);
-}
-/* LCOV_EXCL_STOP */
-
 static const struct wl_tdm_interface tdm_implementation = {
        _tdm_server_cb_debug,
        _tdm_server_cb_create_output,
-       _tdm_server_cb_set_client_vblank_fps,
 };
 
 static void