Remove pageSize from StartupInformation -- it is assumed

This commit is contained in:
Eryn Wells 2016-04-13 23:41:28 -04:00
parent 109ea7ce2e
commit 051dc27006
2 changed files with 0 additions and 9 deletions

View file

@ -39,7 +39,6 @@ kmain(multiboot::Information *information,
startupInformation.kernelStart = u32(&kernelStart);
startupInformation.kernelEnd = u32(&kernelEnd);
// TODO: Define this somewhere else.
startupInformation.pageSize = 4096;
startupInformation.multibootMagic = magic;
startupInformation.multibootInformation = information;

View file

@ -23,14 +23,6 @@ struct StartupInformation
/** Ending address (the first valid address *after* the last) of the kernel. 4K aligned. */
u32 kernelEnd;
/**
* @defgroup Memory
* @{
*/
/** System page size in bytes. */
u32 pageSize;
/** @} */
/** Multiboot's magic value. This should be verified. */
u32 multibootMagic;
/** Pointer to the multiboot information struct. */