summaryrefslogtreecommitdiffstats
path: root/src/core/xfer.c
diff options
context:
space:
mode:
authorMichael Brown2007-07-09 04:58:46 +0200
committerMichael Brown2007-07-09 04:58:46 +0200
commitf0c44f2f71a9379253328e7b61ef4f93cb9b3c0f (patch)
tree7ddff6ab597acb1c1dbaa714722ff5e03f382895 /src/core/xfer.c
parentAdded missing "static" (diff)
downloadipxe-f0c44f2f71a9379253328e7b61ef4f93cb9b3c0f.tar.gz
ipxe-f0c44f2f71a9379253328e7b61ef4f93cb9b3c0f.tar.xz
ipxe-f0c44f2f71a9379253328e7b61ef4f93cb9b3c0f.zip
Remove xfer_ready() (it has been replaced by xfer_window())
Diffstat (limited to 'src/core/xfer.c')
-rw-r--r--src/core/xfer.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/xfer.c b/src/core/xfer.c
index 3e6b7eb6..06895871 100644
--- a/src/core/xfer.c
+++ b/src/core/xfer.c
@@ -127,20 +127,6 @@ size_t xfer_window ( struct xfer_interface *xfer ) {
}
/**
- * Test to see if interface is ready to accept data
- *
- * @v xfer Data transfer interface
- * @ret rc Return status code
- *
- * This test is optional; the data transfer interface may wish that it
- * does not yet wish to accept data, but cannot prevent attempts to
- * deliver data to it.
- */
-int xfer_ready ( struct xfer_interface *xfer ) {
- return xfer_seek ( xfer, 0, SEEK_CUR );
-}
-
-/**
* Allocate I/O buffer
*
* @v xfer Data transfer interface