diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-02-28 12:35:45 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-02-28 12:35:45 +0000 |
commit | 5f6f33b1944be73a50fa66e499849f7bea6c11d4 (patch) | |
tree | 2107bbfe81d59e8fa4b2133aaddb16548dc1b4f5 | |
parent | 62004d792eec301427c651ba13c5849288dc72a5 (diff) |
Fix minor KNF nit that hurts every time I analyse this code.
ok dlg@
-rw-r--r-- | sys/dev/usb/ehci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index fcf54efe58c..63c6c0bd17c 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci.c,v 1.34 2005/02/28 00:34:09 pascoe Exp $ */ +/* $OpenBSD: ehci.c,v 1.35 2005/02/28 12:35:44 pascoe Exp $ */ /* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */ /* @@ -2659,7 +2659,7 @@ ehci_device_request(usbd_xfer_handle xfer) end->qtd.qtd_status &= htole32(~EHCI_QTD_IOC); end->nextqtd = stat; end->qtd.qtd_next = - end->qtd.qtd_altnext = htole32(stat->physaddr); + end->qtd.qtd_altnext = htole32(stat->physaddr); } else { next = stat; } |