aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sbus
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-08-27 06:47:56 -0400
committerDavid S. Miller <davem@davemloft.net>2008-08-29 05:15:12 -0400
commit98261dd1a393777f4400d8ad5a29e97cb30e5422 (patch)
tree93a646fd06a116ce9507a0fb4989048c12c0f53c /drivers/sbus
parent104364810ff5b0844a2183fbca989f70e86d486b (diff)
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>
Diffstat (limited to 'drivers/sbus')
-rw-r--r--drivers/sbus/sbus.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/sbus/sbus.c b/drivers/sbus/sbus.c
index 89eb922a6acd..3b30f9995129 100644
--- a/drivers/sbus/sbus.c
+++ b/drivers/sbus/sbus.c
@@ -28,8 +28,6 @@ show_sbusobppath_attr(struct device * dev, struct device_attribute * attr, char
28 28
29static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH, show_sbusobppath_attr, NULL); 29static DEVICE_ATTR(obppath, S_IRUSR | S_IRGRP | S_IROTH, show_sbusobppath_attr, NULL);
30 30
31struct sbus_bus *sbus_root;
32
33static void __init fill_sbus_device_iommu(struct sbus_dev *sdev) 31static void __init fill_sbus_device_iommu(struct sbus_dev *sdev)
34{ 32{
35 struct of_device *op = of_find_device_by_node(sdev->ofdev.node); 33 struct of_device *op = of_find_device_by_node(sdev->ofdev.node);
@@ -78,17 +76,6 @@ static void __init fill_sbus_device(struct device_node *dp, struct sbus_dev *sde
78 fill_sbus_device_iommu(sdev); 76 fill_sbus_device_iommu(sdev);
79} 77}
80 78
81/* We preserve the "probe order" of these bus and device lists to give
82 * the same ordering as the old code.
83 */
84static void __init sbus_insert(struct sbus_bus *sbus, struct sbus_bus **root)
85{
86 while (*root)
87 root = &(*root)->next;
88 *root = sbus;
89 sbus->next = NULL;
90}
91
92static void __init sdev_insert(struct sbus_dev *sdev, struct sbus_dev **root) 79static void __init sdev_insert(struct sbus_dev *sdev, struct sbus_dev **root)
93{ 80{
94 while (*root) 81 while (*root)
@@ -128,7 +115,6 @@ static void __init build_one_sbus(struct device_node *dp, int num_sbus)
128 if (!sbus) 115 if (!sbus)
129 return; 116 return;
130 117
131 sbus_insert(sbus, &sbus_root);
132 sbus->prom_node = dp->node; 118 sbus->prom_node = dp->node;
133 119
134 sbus_setup_iommu(sbus, dp); 120 sbus_setup_iommu(sbus, dp);