diff options
| author | Anton Blanchard <anton@samba.org> | 2004-11-15 03:56:10 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-11-15 03:56:10 -0800 |
| commit | e35e7f30122bd00965a65654c5464564e279b8f1 (patch) | |
| tree | 1184076e1a742d5a7f50b1a230c4b983a8c4ea80 /include | |
| parent | 6998d7186b239b6b60781f7fe863245eba3be1a5 (diff) | |
[PATCH] ppc64: remove phb_set_model
phb_set_model does a lot of work just to set up a text string that almost
nothing uses. Replace this all with an is_python() check.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc64/pci-bridge.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/asm-ppc64/pci-bridge.h b/include/asm-ppc64/pci-bridge.h index 77ba7f5e41f2..431dd7278088 100644 --- a/include/asm-ppc64/pci-bridge.h +++ b/include/asm-ppc64/pci-bridge.h @@ -18,21 +18,11 @@ struct pci_controller; extern struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node); -enum phb_types { - phb_type_unknown = 0x0, - phb_type_hypervisor = 0x1, - phb_type_python = 0x10, - phb_type_speedwagon = 0x11, - phb_type_winnipeg = 0x12, - phb_type_apple = 0xff -}; - /* * Structure of a PCI controller (host bridge) */ struct pci_controller { char what[8]; /* Eye catcher */ - enum phb_types type; /* Type of hardware */ struct pci_bus *bus; char is_dynamic; void *arch_data; |
