sparc: Remove dinky old-style SBUS probing facilities.
No drivers or code uses this stuff any more, every driver has been converted over to OF device probing. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@ -65,8 +65,6 @@ struct sbus_bus {
|
||||
};
|
||||
#define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev)
|
||||
|
||||
extern struct sbus_bus *sbus_root;
|
||||
|
||||
static inline int
|
||||
sbus_is_slave(struct sbus_dev *dev)
|
||||
{
|
||||
@ -74,17 +72,6 @@ sbus_is_slave(struct sbus_dev *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Device probing routines could find these handy */
|
||||
#define for_each_sbus(bus) \
|
||||
for((bus) = sbus_root; (bus); (bus)=(bus)->next)
|
||||
|
||||
#define for_each_sbusdev(device, bus) \
|
||||
for((device) = (bus)->devices; (device); (device)=(device)->next)
|
||||
|
||||
#define for_all_sbusdev(device, bus) \
|
||||
for ((bus) = sbus_root; (bus); (bus) = (bus)->next) \
|
||||
for ((device) = (bus)->devices; (device); (device) = (device)->next)
|
||||
|
||||
/* These yield IOMMU mappings in consistent mode. */
|
||||
void prom_adjust_ranges(struct linux_prom_ranges *, int,
|
||||
struct linux_prom_ranges *, int);
|
||||
|
@ -66,19 +66,6 @@ struct sbus_bus {
|
||||
};
|
||||
#define to_sbus(d) container_of(d, struct sbus_bus, ofdev.dev)
|
||||
|
||||
extern struct sbus_bus *sbus_root;
|
||||
|
||||
/* Device probing routines could find these handy */
|
||||
#define for_each_sbus(bus) \
|
||||
for((bus) = sbus_root; (bus); (bus)=(bus)->next)
|
||||
|
||||
#define for_each_sbusdev(device, bus) \
|
||||
for((device) = (bus)->devices; (device); (device)=(device)->next)
|
||||
|
||||
#define for_all_sbusdev(device, bus) \
|
||||
for ((bus) = sbus_root; (bus); (bus) = (bus)->next) \
|
||||
for ((device) = (bus)->devices; (device); (device) = (device)->next)
|
||||
|
||||
extern void sbus_setup_iommu(struct sbus_bus *, struct device_node *);
|
||||
extern int sbus_arch_preinit(void);
|
||||
extern void sbus_arch_postinit(void);
|
||||
|
@ -153,7 +153,6 @@ EXPORT_SYMBOL(BTFIXUP_CALL(mmu_release_scsi_one));
|
||||
EXPORT_SYMBOL(BTFIXUP_CALL(pgprot_noncached));
|
||||
|
||||
#ifdef CONFIG_SBUS
|
||||
EXPORT_SYMBOL(sbus_root);
|
||||
EXPORT_SYMBOL(sbus_set_sbus64);
|
||||
EXPORT_SYMBOL(sbus_iounmap);
|
||||
EXPORT_SYMBOL(sbus_ioremap);
|
||||
|
Reference in New Issue
Block a user