summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe
diff options
context:
space:
mode:
authorMichael Brown2007-01-12 09:02:27 +0100
committerMichael Brown2007-01-12 09:02:27 +0100
commit475d6d1f7c7f169a89ea363ad819b0dd2975ae10 (patch)
tree000239996a57f863fb56326ed137bf85c3517934 /src/include/gpxe
parentAllow "imgexec" with no arguments to boot the file that was loaded with (diff)
downloadipxe-475d6d1f7c7f169a89ea363ad819b0dd2975ae10.tar.gz
ipxe-475d6d1f7c7f169a89ea363ad819b0dd2975ae10.tar.xz
ipxe-475d6d1f7c7f169a89ea363ad819b0dd2975ae10.zip
fetch() now knows nothing about struct image; it simply loads a file and
returns the allocated buffer.
Diffstat (limited to 'src/include/gpxe')
-rw-r--r--src/include/gpxe/image.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h
index 7f11e6a0c..5367735c8 100644
--- a/src/include/gpxe/image.h
+++ b/src/include/gpxe/image.h
@@ -31,14 +31,6 @@ struct image {
userptr_t data;
/** Length of raw file image */
size_t len;
- /**
- * Free raw file image
- *
- * @v data Raw file image
- *
- * Call this method before freeing up the @c struct @c image.
- */
- void ( * free ) ( userptr_t data );
/** Entry point */
physaddr_t entry;