diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-29 16:29:43 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-12-29 16:29:43 +0000 |
commit | 82b6a7781a258d770c4104783c04017b0acc5eeb (patch) | |
tree | 4e348487149d69a4b48c64a7a223adda818a87cd /sys/dev | |
parent | 474bd1f52cc8fb9d4678309786c84980ddbbb493 (diff) |
typo
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/uts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uts.c b/sys/dev/usb/uts.c index 35365c02b53..1bb8a81bcdb 100644 --- a/sys/dev/usb/uts.c +++ b/sys/dev/usb/uts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uts.c,v 1.22 2007/10/11 18:33:15 deraadt Exp $ */ +/* $OpenBSD: uts.c,v 1.23 2008/12/29 16:29:42 miod Exp $ */ /* * Copyright (c) 2007 Robert Nagy <robert@openbsd.org> @@ -400,7 +400,7 @@ uts_get_pos(usbd_private_handle addr, struct uts_pos *tp) switch (sc->sc_vendor) { case USB_VENDOR_EGALAX: down = (p[0] & 0x01); - /* Invert the X coordiate */ + /* Invert the X coordinate */ x = 0x07ff - abs(((p[3] & 0x0f) << 7) | (p[4] & 0x7f)); y = ((p[1] & 0x0f) << 7) | (p[2] & 0x7f); z = down; |