PERFORCE change 116856 for review
Marcel Moolenaar
marcel at FreeBSD.org
Thu Mar 29 18:29:10 UTC 2007
http://perforce.freebsd.org/chv.cgi?CH=116856
Change 116856 by marcel at marcel_jnpr on 2007/03/29 18:28:33
Fix merge conflict: di->ops is a pointer.
Missed in some prior integration.
Affected files ...
.. //depot/projects/uart/dev/uart/uart_cpu.h#23 edit
Differences ...
==== //depot/projects/uart/dev/uart/uart_cpu.h#23 (text+ko) ====
@@ -141,7 +141,7 @@
int res;
uart_lock(di->hwmtx);
- res = di->ops.rxready(&di->bas);
+ res = di->ops->rxready(&di->bas);
uart_unlock(di->hwmtx);
return (res);
}
More information about the p4-projects
mailing list