In cpu/x86 there are lots of places where data that is static and constant is not declared static and/or const. These should be. Making them static helps ensure we do not break the one definition rule. Making them const helps the compiler/linker to place the data in read-only sections.