From 79a09007bcba791400de273c72298698dc02d403 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 13 Jan 2015 10:29:59 -0500 Subject: [PATCH] ecore-drm: Remove unused function 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 --- src/lib/ecore_drm/ecore_drm_inputs.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_inputs.c b/src/lib/ecore_drm/ecore_drm_inputs.c index 0c76467..45dce8f 100644 --- a/src/lib/ecore_drm/ecore_drm_inputs.c +++ b/src/lib/ecore_drm/ecore_drm_inputs.c @@ -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) -- 2.7.4