diff options
author | Alexandr Shadchin <alexandr.shadchin@gmail.com> | 2011-01-06 13:37:39 +0500 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-01-07 15:30:56 -0800 |
commit | 7d03efb3a3af77ca6831492a793d18b89cc64083 (patch) | |
tree | e51fc8615cb50bc621a60fd0117083764e0d39ff | |
parent | 40ed9bb3dc87702510d5e54c42a60a2cdd73c135 (diff) |
bsd: Fix print wscons type keyboard for Sun5
Signed-off-by: Alexandr Shadchin <Alexandr.Shadchin@gmail.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/bsd_kbd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bsd_kbd.c b/src/bsd_kbd.c index d0cedcd..ebaeae5 100644 --- a/src/bsd_kbd.c +++ b/src/bsd_kbd.c @@ -413,9 +413,9 @@ OpenKeyboard(InputInfoPtr pInfo) break; #endif #ifdef WSKBD_TYPE_SUN5 - case WSKBD_TYPE_SUN5: - xf86Msg(X_PROBED, "Keyboard type: Sun5\n"); - break; + case WSKBD_TYPE_SUN5: + printWsType("Sun5", pInfo->name); + break; #endif default: xf86Msg(X_ERROR, "%s: Unsupported wskbd type \"%d\"", |