[Title] remove warning
authorgiwoong.kim <giwoong.kim@samsung.com>
Fri, 9 Mar 2012 01:11:03 +0000 (10:11 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Fri, 9 Mar 2012 01:11:03 +0000 (10:11 +0900)
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/hw/maru_touchscreen.c [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 41db0ff..0b60571
@@ -35,7 +35,7 @@
 #include "usb-desc.h"
 #include "../debug_ch.h"
 
-MULTI_DEBUG_CHANNEL(qemu, maru_touchscreen);
+MULTI_DEBUG_CHANNEL(qemu, touchscreen);
 
 
 typedef struct USBTouchscreenState {
@@ -141,7 +141,7 @@ static void usb_touchscreen_event(void *opaque, int x, int y, int z, int buttons
     s->buttons_state = buttons_state;
     s->changed = 1;
 
-    INFO("boo~~~%d,%d,%d,, %d", x, y, z, buttons_state);
+    INFO("boo~~~%d,%d,%d,, %d\n", x, y, z, buttons_state);
 }
 
 static int usb_touchscreen_poll(USBTouchscreenState *s, uint8_t *buf, int len)
@@ -314,7 +314,6 @@ static struct USBDeviceInfo touchscreen_info = {
 
 static void usb_touchscreen_register_devices(void)
 {
-    INFO("boo~~~~~~~~~~~~~");
     usb_qdev_register(&touchscreen_info);
 }