ecore-drm: Remove unused function
authorChris Michael <cp.michael@samsung.com>
Tue, 13 Jan 2015 15:29:59 +0000 (10:29 -0500)
committerChris Michael <cp.michael@samsung.com>
Tue, 13 Jan 2015 15:35:52 +0000 (10:35 -0500)
Summary: Since we now have a reference to the actual output inside the
input device, we no longer need this function to update the Input
device's view of the output size.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_drm/ecore_drm_inputs.c

index 0c76467..45dce8f 100644 (file)
@@ -194,24 +194,6 @@ const struct libinput_interface _input_interface =
    _cb_close_restricted,
 };
 
-void 
-_ecore_drm_inputs_update_output(Ecore_Drm_Device *dev, int w, int h)
-{
-   Ecore_Drm_Seat *seat;
-   Ecore_Drm_Evdev *edev;
-   Eina_List *l, *ll;
-
-   EINA_LIST_FOREACH(dev->seats, l, seat)
-     {
-        EINA_LIST_FOREACH(seat->devices, ll, edev)
-          {
-             edev->output.w = w;
-             edev->output.h = h;
-             ecore_drm_inputs_device_axis_size_set(edev, w, h);
-          }
-     }
-}
-
 /* public functions */
 EAPI Eina_Bool 
 ecore_drm_inputs_create(Ecore_Drm_Device *dev)