diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2010-03-02 20:27:26 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2010-03-02 20:27:26 +0000 |
commit | 070a020724caaf33ed3a60bac8d706231fe8d723 (patch) | |
tree | 9bce2952f5c3b77753d870bf30fe43a710f77ef0 /sys/dev/usb/if_urndisreg.h | |
parent | 059549f92685a6c593d3221f7eeaf5df75c4dd07 (diff) |
Get rid of the code that deals with the interrupt pipe. The current
code doesn't do anything at the moment, so no point in keeping it.
Diffstat (limited to 'sys/dev/usb/if_urndisreg.h')
-rw-r--r-- | sys/dev/usb/if_urndisreg.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/dev/usb/if_urndisreg.h b/sys/dev/usb/if_urndisreg.h index 9e02d0a3706..ab5fa3b512e 100644 --- a/sys/dev/usb/if_urndisreg.h +++ b/sys/dev/usb/if_urndisreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_urndisreg.h,v 1.1 2010/03/01 23:35:56 mk Exp $ */ +/* $OpenBSD: if_urndisreg.h,v 1.2 2010/03/02 20:27:25 mk Exp $ */ /* * Copyright (c) 2010 Jonathan Armani <dbd@asystant.net> @@ -23,11 +23,6 @@ #define RNDIS_TX_LIST_CNT 1 #define RNDIS_BUFSZ 1542 -struct urndis_notification { - u_int32_t notification; - u_int32_t reserved; -}; - struct urndis_chain { struct urndis_softc *sc_sc; usbd_xfer_handle sc_xfer; @@ -65,11 +60,6 @@ struct urndis_softc { usbd_interface_handle sc_iface_ctl; usbd_interface_handle sc_iface_data; - int sc_intr_no; - usbd_pipe_handle sc_intr_pipe; - int sc_intr_size; - struct urndis_notification sc_intr_buf; - int sc_bulkin_no; usbd_pipe_handle sc_bulkin_pipe; int sc_bulkout_no; |