Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7c7d0e9 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86: tom2 warning fix



Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 35605a10
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -251,8 +251,10 @@ void __init get_mtrr_state(void)
			else
				printk(KERN_INFO "MTRR %u disabled\n", i);
		}
		if (tom2)
			printk(KERN_INFO "TOM2: %016lx aka %ldM\n", tom2, tom2>>20);
		if (tom2) {
			printk(KERN_INFO "TOM2: %016llx aka %lldM\n",
					  tom2, tom2>>20);
		}
	}
	mtrr_state_set = 1;