]> Pileus Git - ~andy/linux/commitdiff
sparc: Kill sbus_devaddr() and sbus_dev_slot().
authorDavid S. Miller <davem@davemloft.net>
Wed, 27 Aug 2008 11:17:24 +0000 (04:17 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 29 Aug 2008 09:15:14 +0000 (02:15 -0700)
Unused.

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/include/asm/sbus_32.h
arch/sparc/include/asm/sbus_64.h

index 9f35ae870b596e002cb6b634d97d120a4842f535..fdaf1a74492a5d4fef3f5f0e916989038bf43ae0 100644 (file)
  * you can get a SBus 'slot' number and an offset within that slot.
  */
 
-/* The base address at which to calculate device OBIO addresses. */
-#define SUN_SBUS_BVADDR        0xf8000000
-#define SBUS_OFF_MASK          0x01ffffff
-
-/* These routines are used to calculate device address from slot
- * numbers + offsets, and vice versa.
- */
-
-static inline unsigned long sbus_devaddr(int slotnum, unsigned long offset)
-{
-  return (unsigned long) (SUN_SBUS_BVADDR+((slotnum)<<25)+(offset));
-}
-
-static inline int sbus_dev_slot(unsigned long dev_addr)
-{
-  return (int) (((dev_addr)-SUN_SBUS_BVADDR)>>25);
-}
-
 struct sbus_bus;
 
 /* Linux SBUS device tables */
index ec3509a3d9748b5ec0a11719ebfdcc7aca71cc95..6b3b055fca7158fcab356477099023a8d8405d47 100644 (file)
  * you can get a SBus 'slot' number and an offset within that slot.
  */
 
-/* The base address at which to calculate device OBIO addresses. */
-#define SUN_SBUS_BVADDR        0x00000000
-#define SBUS_OFF_MASK          0x0fffffff
-
-/* These routines are used to calculate device address from slot
- * numbers + offsets, and vice versa.
- */
-
-static inline unsigned long sbus_devaddr(int slotnum, unsigned long offset)
-{
-  return (unsigned long) (SUN_SBUS_BVADDR+((slotnum)<<28)+(offset));
-}
-
-static inline int sbus_dev_slot(unsigned long dev_addr)
-{
-  return (int) (((dev_addr)-SUN_SBUS_BVADDR)>>28);
-}
-
 struct sbus_bus;
 
 /* Linux SBUS device tables */