Replace image->entry with image->priv.

This commit is contained in:
Michael Brown
2007-01-14 04:04:28 +00:00
parent 3bdbfe1f00
commit 797edf28b7
4 changed files with 16 additions and 8 deletions

View File

@@ -35,8 +35,11 @@ struct image {
/** Image type, if known */
struct image_type *type;
/** Entry point */
physaddr_t entry;
/** Image type private data */
union {
physaddr_t phys;
userptr_t user;
} priv;
};
/** Image is loaded */