diff options
author | David S. Miller <davem@davemloft.net> | 2008-08-27 07:17:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-29 05:15:14 -0400 |
commit | 9b9644c6d91e9fd8edecba3ae57a35285cfce9db (patch) | |
tree | 826357c09f0ba156b3ebe29f3fa628dd6a5641e8 /arch/sparc/include | |
parent | 615deeb27b7c3f51b464b47e8b9a8e433ab2d0ca (diff) |
sparc: Kill sbus_devaddr() and sbus_dev_slot().
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 | 18 | ||||
-rw-r--r-- | arch/sparc/include/asm/sbus_64.h | 18 |
2 files changed, 0 insertions, 36 deletions
diff --git a/arch/sparc/include/asm/sbus_32.h b/arch/sparc/include/asm/sbus_32.h index 9f35ae870b59..fdaf1a74492a 100644 --- a/arch/sparc/include/asm/sbus_32.h +++ b/arch/sparc/include/asm/sbus_32.h | |||
@@ -21,24 +21,6 @@ | |||
21 | * you can get a SBus 'slot' number and an offset within that slot. | 21 | * you can get a SBus 'slot' number and an offset within that slot. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* The base address at which to calculate device OBIO addresses. */ | ||
25 | #define SUN_SBUS_BVADDR 0xf8000000 | ||
26 | #define SBUS_OFF_MASK 0x01ffffff | ||
27 | |||
28 | /* These routines are used to calculate device address from slot | ||
29 | * numbers + offsets, and vice versa. | ||
30 | */ | ||
31 | |||
32 | static inline unsigned long sbus_devaddr(int slotnum, unsigned long offset) | ||
33 | { | ||
34 | return (unsigned long) (SUN_SBUS_BVADDR+((slotnum)<<25)+(offset)); | ||
35 | } | ||
36 | |||
37 | static inline int sbus_dev_slot(unsigned long dev_addr) | ||
38 | { | ||
39 | return (int) (((dev_addr)-SUN_SBUS_BVADDR)>>25); | ||
40 | } | ||
41 | |||
42 | struct sbus_bus; | 24 | struct sbus_bus; |
43 | 25 | ||
44 | /* Linux SBUS device tables */ | 26 | /* Linux SBUS device tables */ |
diff --git a/arch/sparc/include/asm/sbus_64.h b/arch/sparc/include/asm/sbus_64.h index ec3509a3d974..6b3b055fca71 100644 --- a/arch/sparc/include/asm/sbus_64.h +++ b/arch/sparc/include/asm/sbus_64.h | |||
@@ -21,24 +21,6 @@ | |||
21 | * you can get a SBus 'slot' number and an offset within that slot. | 21 | * you can get a SBus 'slot' number and an offset within that slot. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* The base address at which to calculate device OBIO addresses. */ | ||
25 | #define SUN_SBUS_BVADDR 0x00000000 | ||
26 | #define SBUS_OFF_MASK 0x0fffffff | ||
27 | |||
28 | /* These routines are used to calculate device address from slot | ||
29 | * numbers + offsets, and vice versa. | ||
30 | */ | ||
31 | |||
32 | static inline unsigned long sbus_devaddr(int slotnum, unsigned long offset) | ||
33 | { | ||
34 | return (unsigned long) (SUN_SBUS_BVADDR+((slotnum)<<28)+(offset)); | ||
35 | } | ||
36 | |||
37 | static inline int sbus_dev_slot(unsigned long dev_addr) | ||
38 | { | ||
39 | return (int) (((dev_addr)-SUN_SBUS_BVADDR)>>28); | ||
40 | } | ||
41 | |||
42 | struct sbus_bus; | 24 | struct sbus_bus; |
43 | 25 | ||
44 | /* Linux SBUS device tables */ | 26 | /* Linux SBUS device tables */ |