Commit 79aac173 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Linus Torvalds

[PATCH] ppc64: remove unused cruft from prom.h

This patch removes some bogus struct definitions from prom.h that aren't
used anymore after the other pending ppc64 patches have been applied.
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b0fce583
......@@ -93,33 +93,6 @@ struct isa_range {
unsigned int size;
};
struct pci_range32 {
struct pci_address child_addr;
unsigned int parent_addr;
unsigned long size;
};
struct pci_range64 {
struct pci_address child_addr;
unsigned long parent_addr;
unsigned long size;
};
union pci_range {
struct {
struct pci_address addr;
u32 phys;
u32 size_hi;
} pci32;
struct {
struct pci_address addr;
u32 phys_hi;
u32 phys_lo;
u32 size_hi;
u32 size_lo;
} pci64;
};
struct of_tce_table {
phandle node;
unsigned long base;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment