ecore-drm: Add missing EINA_UNUSED for unused function paramaters.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-03-06 11:12:23 +00:00
parent d7f69ba826
commit 8e30a4eeab
1 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ _device_handle(Ecore_Drm_Evdev *edev)
}
static void
_device_notify_key(Ecore_Drm_Evdev *dev, struct input_event *event, unsigned int timestamp)
_device_notify_key(Ecore_Drm_Evdev *dev, struct input_event *event, unsigned int timestamp EINA_UNUSED)
{
DBG("Key Event");
DBG("\tCode: %d", event->code);
@ -173,7 +173,7 @@ _device_notify_key(Ecore_Drm_Evdev *dev, struct input_event *event, unsigned int
}
static void
_device_process_flush(Ecore_Drm_Evdev *dev, unsigned int timestamp)
_device_process_flush(Ecore_Drm_Evdev *dev, unsigned int timestamp EINA_UNUSED)
{
switch (dev->pending_event)
{