Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/dev/uart/uart_cpu.h 157300 2006-03-30 18:37:03Z marcel $
---
> * $FreeBSD: head/sys/dev/uart/uart_cpu.h 157380 2006-04-01 19:04:54Z marcel $
45c45
< int (*getc)(struct uart_bas *);
---
> int (*getc)(struct uart_bas *, struct mtx *);
153d152
< int res;
155,158c154
< uart_lock(di->hwmtx);
< res = di->ops.getc(&di->bas);
< uart_unlock(di->hwmtx);
< return (res);
---
> return (di->ops.getc(&di->bas, di->hwmtx));