Deleted Added
full compact
28c28
< __FBSDID("$FreeBSD: head/sys/dev/uart/uart_cpu_amd64.c 119815 2003-09-06 23:13:47Z marcel $");
---
> __FBSDID("$FreeBSD: head/sys/dev/uart/uart_cpu_amd64.c 119866 2003-09-07 21:51:03Z marcel $");
38a39,45
> bus_addr_t
> uart_cpu_busaddr(struct uart_bas *bas)
> {
>
> return (bas->bsh);
> }
>
39a47,53
> uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2)
> {
>
> return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
> }
>
> int
86,92d99
<
< int
< uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2)
< {
<
< return ((b1->bsh == b2->bsh && b1->bst == b2->bst) ? 1 : 0);
< }