diff options
author | David S. Miller <davem@davemloft.net> | 2008-08-27 07:18:02 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-29 05:15:18 -0400 |
commit | c6e5f661eee0ff62e7fdb263cfeee73c20dd6e99 (patch) | |
tree | 2fa811c8f3687b2c3dea092fd6486be478475ff4 /arch/sparc/include | |
parent | 9b9644c6d91e9fd8edecba3ae57a35285cfce9db (diff) |
sparc: Kill OBP property members of sbus_dev and sbus_bus
Unused.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/include')
-rw-r--r-- | arch/sparc/include/asm/sbus_32.h | 6 | ||||
-rw-r--r-- | arch/sparc/include/asm/sbus_64.h | 7 |
2 files changed, 0 insertions, 13 deletions
diff --git a/arch/sparc/include/asm/sbus_32.h b/arch/sparc/include/asm/sbus_32.h index fdaf1a74492a..99f79e4a7094 100644 --- a/arch/sparc/include/asm/sbus_32.h +++ b/arch/sparc/include/asm/sbus_32.h | |||
@@ -30,9 +30,6 @@ struct sbus_dev { | |||
30 | struct sbus_dev *next; | 30 | struct sbus_dev *next; |
31 | struct sbus_dev *child; | 31 | struct sbus_dev *child; |
32 | struct sbus_dev *parent; | 32 | struct sbus_dev *parent; |
33 | int prom_node; | ||
34 | char prom_name[64]; | ||
35 | int slot; | ||
36 | }; | 33 | }; |
37 | #define to_sbus_device(d) container_of(d, struct sbus_dev, ofdev.dev) | 34 | #define to_sbus_device(d) container_of(d, struct sbus_dev, ofdev.dev) |
38 | 35 | ||
@@ -41,9 +38,6 @@ struct sbus_bus { | |||
41 | struct of_device ofdev; | 38 | struct of_device ofdev; |
42 | struct sbus_dev *devices; /* Link to devices on this SBus */ | 39 | struct sbus_dev *devices; /* Link to devices on this SBus */ |
43 | struct sbus_bus *next; /* next SBus, if more than one SBus */ | 40 | struct sbus_bus *next; /* next SBus, if more than one SBus */ |
44 | int prom_node; /* PROM device tree node for this SBus */ | ||
45 | char prom_name[64]; /* Usually "sbus" or "sbi" */ | ||
46 | int clock_freq; | ||
47 | }; | 41 | }; |
48 | #define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev) | 42 | #define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev) |
49 | 43 | ||
diff --git a/arch/sparc/include/asm/sbus_64.h b/arch/sparc/include/asm/sbus_64.h index 6b3b055fca71..b7b76945247f 100644 --- a/arch/sparc/include/asm/sbus_64.h +++ b/arch/sparc/include/asm/sbus_64.h | |||
@@ -30,9 +30,6 @@ struct sbus_dev { | |||
30 | struct sbus_dev *next; | 30 | struct sbus_dev *next; |
31 | struct sbus_dev *child; | 31 | struct sbus_dev *child; |
32 | struct sbus_dev *parent; | 32 | struct sbus_dev *parent; |
33 | int prom_node; | ||
34 | char prom_name[64]; | ||
35 | int slot; | ||
36 | }; | 33 | }; |
37 | #define to_sbus_device(d) container_of(d, struct sbus_dev, ofdev.dev) | 34 | #define to_sbus_device(d) container_of(d, struct sbus_dev, ofdev.dev) |
38 | 35 | ||
@@ -41,10 +38,6 @@ struct sbus_bus { | |||
41 | struct of_device ofdev; | 38 | struct of_device ofdev; |
42 | struct sbus_dev *devices; /* Tree of SBUS devices */ | 39 | struct sbus_dev *devices; /* Tree of SBUS devices */ |
43 | struct sbus_bus *next; /* Next SBUS in system */ | 40 | struct sbus_bus *next; /* Next SBUS in system */ |
44 | int prom_node; /* OBP node of SBUS */ | ||
45 | char prom_name[64]; /* Usually "sbus" or "sbi" */ | ||
46 | int clock_freq; | ||
47 | int portid; | ||
48 | }; | 41 | }; |
49 | #define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev) | 42 | #define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev) |
50 | 43 | ||