diff options
| author | Johan Adolfsson <johan.adolfsson@axis.com> | 2002-06-02 22:32:25 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-06-02 22:32:25 -0700 |
| commit | e347fa36454c2b50a4bcb8edb5a80b5c09bc02b5 (patch) | |
| tree | 656c4a707a8a2b92f6127082b011118167c23913 | |
| parent | 0ed9bc096d1ea407cbeab6a13fadcee7e95d7f2a (diff) | |
[PATCH] Missing include in mm/bootmem.c
Missing include of asm_io.h in mm_bootmem.c:
Submitted this trivial patch on May 14, but nothing has happened yet.
Perhaps better chance if you took care of it.
It's needed by phys_to_virt() but it happens to work on i386 etc.
since dma.h includes io.h for that arch.
| -rw-r--r-- | mm/bootmem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/bootmem.c b/mm/bootmem.c index 5027b2892471..ed35ee7012f5 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c @@ -18,6 +18,7 @@ #include <linux/bootmem.h> #include <linux/mmzone.h> #include <asm/dma.h> +#include <asm/io.h> /* * Access to this subsystem has to be serialized externally. (this is |
