From: Michael Brown Date: Mon, 9 Jul 2007 02:58:46 +0000 (+0100) Subject: Remove xfer_ready() (it has been replaced by xfer_window()) X-Git-Tag: v0.9.3~231 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0c44f2f71a9379253328e7b61ef4f93cb9b3c0f;p=thirdparty%2Fipxe.git Remove xfer_ready() (it has been replaced by xfer_window()) --- diff --git a/src/core/xfer.c b/src/core/xfer.c index 3e6b7eb66..068958711 100644 --- a/src/core/xfer.c +++ b/src/core/xfer.c @@ -126,20 +126,6 @@ size_t xfer_window ( struct xfer_interface *xfer ) { return len; } -/** - * 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 *