btext.c (a9de18eb761f7c1c860964b2e5addc1a35c7e861) | btext.c (95f72d1ed41a66f1c1c29c24d479de81a0bea36f) |
---|---|
1/* 2 * Procedures for drawing on the screen early on in the boot process. 3 * 4 * Benjamin Herrenschmidt <benh@kernel.crashing.org> 5 */ 6#include <linux/kernel.h> 7#include <linux/string.h> 8#include <linux/init.h> 9#include <linux/module.h> | 1/* 2 * Procedures for drawing on the screen early on in the boot process. 3 * 4 * Benjamin Herrenschmidt <benh@kernel.crashing.org> 5 */ 6#include <linux/kernel.h> 7#include <linux/string.h> 8#include <linux/init.h> 9#include <linux/module.h> |
10#include <linux/lmb.h> | 10#include <linux/memblock.h> |
11 12#include <asm/sections.h> 13#include <asm/prom.h> 14#include <asm/btext.h> 15#include <asm/page.h> 16#include <asm/mmu.h> 17#include <asm/pgtable.h> 18#include <asm/io.h> --- 904 unchanged lines hidden --- | 11 12#include <asm/sections.h> 13#include <asm/prom.h> 14#include <asm/btext.h> 15#include <asm/page.h> 16#include <asm/mmu.h> 17#include <asm/pgtable.h> 18#include <asm/io.h> --- 904 unchanged lines hidden --- |