diff --git a/src/Multiboot.cc b/src/Multiboot.cc index 1a07f3b..14a5ef0 100644 --- a/src/Multiboot.cc +++ b/src/Multiboot.cc @@ -25,29 +25,10 @@ enum Present { VBE = 1 << 11, }; -multiboot::Information *sInformation = 0; - } namespace multiboot { -/* - * Static - */ - -const Information * -Information::information() -{ - return sInformation; -} - - -void -Information::setInformation(Information *info) -{ - sInformation = info; -} - /* * Public */ diff --git a/src/Multiboot.hh b/src/Multiboot.hh index 0bf5df8..0d16339 100644 --- a/src/Multiboot.hh +++ b/src/Multiboot.hh @@ -48,9 +48,6 @@ struct PACKED Information uint32_t mLength; }; - static const Information *information(); - static void setInformation(Information* info); - uint32_t lowerMemoryKB() const; uint32_t upperMemoryKB() const;