|
@@ -126,20 +126,6 @@ size_t xfer_window ( struct xfer_interface *xfer ) {
|
126
|
126
|
return len;
|
127
|
127
|
}
|
128
|
128
|
|
129
|
|
-/**
|
130
|
|
- * Test to see if interface is ready to accept data
|
131
|
|
- *
|
132
|
|
- * @v xfer Data transfer interface
|
133
|
|
- * @ret rc Return status code
|
134
|
|
- *
|
135
|
|
- * This test is optional; the data transfer interface may wish that it
|
136
|
|
- * does not yet wish to accept data, but cannot prevent attempts to
|
137
|
|
- * deliver data to it.
|
138
|
|
- */
|
139
|
|
-int xfer_ready ( struct xfer_interface *xfer ) {
|
140
|
|
- return xfer_seek ( xfer, 0, SEEK_CUR );
|
141
|
|
-}
|
142
|
|
-
|
143
|
129
|
/**
|
144
|
130
|
* Allocate I/O buffer
|
145
|
131
|
*
|