From f00ad1da7b9e29c7b64b35f2bdf2f3962b98faaf Mon Sep 17 00:00:00 2001 From: sungmin ha Date: Mon, 23 Dec 2013 19:48:44 +0900 Subject: [PATCH] remote: modified define construction in ui/input.c Change-Id: I1535ed1bfe5d72102533c52144606a806ab272ca Signed-off-by: sungmin ha --- ui/input.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/input.c b/ui/input.c index faae786fee..d60a6dafab 100644 --- a/ui/input.c +++ b/ui/input.c @@ -22,7 +22,7 @@ * THE SOFTWARE. */ -#ifdef CONFIG_MARU && CONFIG_LINUX +#if defined CONFIG_MARU && defined CONFIG_LINUX #include #endif @@ -34,7 +34,7 @@ #include "qapi-types.h" #include "ui/keymaps.h" -#ifdef CONFIG_MARU && CONFIG_LINUX +#if defined CONFIG_MARU && defined CONFIG_LINUX extern void maru_hwkey_event(int event_type, int keycode); extern void do_rotation_event(int rotation_type); extern void do_host_kbd_enable(bool on); @@ -537,7 +537,7 @@ int kbd_mouse_has_absolute(void) return 0; } -#ifdef CONFIG_MARU && CONFIG_LINUX +#if defined CONFIG_MARU && defined CONFIG_LINUX void hwkey_put_keycode(int type, int keycode) { if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) { -- 2.34.1