summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2011-06-27 03:48:06 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2011-06-27 03:50:17 +1000
commit51cf6923be5502cb491fe6d1df1dc8b9a410ce87 (patch)
tree1be3fe451c89b86867d518ed7cd36e2355d0062b
parentb48e5e47ba5c952c8a7a6aeb08d875be8682fe32 (diff)
Don't pretend successfully opening the device is an error.
I mean, you shouldn't be running this driver and all, but still - success is success. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/xf86Aiptek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xf86Aiptek.c b/src/xf86Aiptek.c
index 3a60d13..6a4ba96 100644
--- a/src/xf86Aiptek.c
+++ b/src/xf86Aiptek.c
@@ -1479,7 +1479,7 @@ xf86AiptekProc(DeviceIntPtr pAiptek, int requestCode)
xf86Msg(X_ERROR, "Unable to open aiptek device\n");
return !Success;
}
- xf86Msg(X_ERROR, "Able to open aiptek device\n");
+ xf86Msg(X_INFO, "Able to open aiptek device\n");
xf86AddEnabledDevice(pInfo);
pAiptek->public.on = TRUE;
}