Module Name: src
Committed By: skrll
Date: Thu Apr 28 14:00:23 UTC 2016
Modified Files:
src/sys/arch/macppc/dev: pbms.c
Log Message:
Fix build
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/macppc/dev/pbms.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/macppc/dev/pbms.c
diff -u src/sys/arch/macppc/dev/pbms.c:1.13 src/sys/arch/macppc/dev/pbms.c:1.14
--- src/sys/arch/macppc/dev/pbms.c:1.13 Sat Oct 27 17:18:00 2012
+++ src/sys/arch/macppc/dev/pbms.c Thu Apr 28 14:00:23 2016
@@ -1,4 +1,4 @@
-/* $Id: pbms.c,v 1.13 2012/10/27 17:18:00 chs Exp $ */
+/* $Id: pbms.c,v 1.14 2016/04/28 14:00:23 skrll Exp $ */
/*
* Copyright (c) 2005, Johan Wall�n
@@ -306,7 +306,7 @@ pbms_match(device_t parent, cfdata_t mat
* We just check if the vendor and product IDs have the magic numbers
* we expect.
*/
- if (uha->uaa->proto == UIPROTO_MOUSE &&
+ if (uha->uiaa->uiaa_proto == UIPROTO_MOUSE &&
(udd = usbd_get_device_descriptor(uha->parent->sc_udev)) != NULL) {
vendor = UGETW(udd->idVendor);
product = UGETW(udd->idProduct);