summaryrefslogtreecommitdiffstats
path: root/util/sconfig/sconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/sconfig/sconfig.h')
-rw-r--r--util/sconfig/sconfig.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/util/sconfig/sconfig.h b/util/sconfig/sconfig.h
index cb8f7b36eff2..bb9a98f268b9 100644
--- a/util/sconfig/sconfig.h
+++ b/util/sconfig/sconfig.h
@@ -106,17 +106,11 @@ struct chip {
struct device;
struct bus {
- /* Instance/ID of the bus under the device. */
- int id;
-
/* Pointer to device to which this bus belongs. */
struct device *dev;
/* Pointer to list of children. */
struct device *children;
-
- /* Pointer to next bus for the device. */
- struct bus *next_bus;
};
struct device {
@@ -157,10 +151,8 @@ struct device {
/* Pointer to chip instance for this device. */
struct chip_instance *chip_instance;
- /* Pointer to list of buses under this device. */
+ /* Pointer to the bus under this device. */
struct bus *bus;
- /* Pointer to last bus under this device. */
- struct bus *last_bus;
/* Global identifier of the ops for this device. */
char *ops_id;