diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-06 20:32:23 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-22 07:24:23 +0000 |
commit | e348066bd867160ab1a3fdcd01129d978e719470 (patch) | |
tree | dfbb2291fa9281132137d52afe5a1e9d50417842 /src/device/device.c | |
parent | 996670377666eac27af4c4562d48677305e4e937 (diff) |
src/device: Get rid of device_t
Use of device_t has been abandoned in ramstage.
The function prototype for "struct device *add_cpu_device"
is already correct and doesn't need to be fixed.
Change-Id: I7bd8b93922f113bdaf7ba460acf6a7d62c4df013
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26067
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/device/device.c')
-rw-r--r-- | src/device/device.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/device/device.c b/src/device/device.c index 02209d9e36..5b4c264752 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -122,7 +122,7 @@ uint64_t uma_memory_size = 0; */ static device_t __alloc_dev(struct bus *parent, struct device_path *path) { - device_t dev, child; + struct device *dev, *child; /* Find the last child of our parent. */ for (child = parent->children; child && child->sibling; /* */ ) @@ -156,7 +156,7 @@ static device_t __alloc_dev(struct bus *parent, struct device_path *path) device_t alloc_dev(struct bus *parent, struct device_path *path) { - device_t dev; + struct device *dev; spin_lock(&dev_lock); dev = __alloc_dev(parent, path); spin_unlock(&dev_lock); @@ -172,7 +172,7 @@ device_t alloc_dev(struct bus *parent, struct device_path *path) */ device_t alloc_find_dev(struct bus *parent, struct device_path *path) { - device_t child; + struct device *child; spin_lock(&dev_lock); child = find_dev_path(parent, path); if (!child) @@ -627,7 +627,8 @@ struct constraints { struct resource io, mem; }; -static struct resource * resource_limit(struct constraints *limits, struct resource *res) +static struct resource *resource_limit(struct constraints *limits, + struct resource *res) { struct resource *lim = NULL; @@ -640,7 +641,8 @@ static struct resource * resource_limit(struct constraints *limits, struct resou return lim; } -static void constrain_resources(const struct device *dev, struct constraints* limits) +static void constrain_resources(const struct device *dev, + struct constraints* limits) { const struct device *child; struct resource *res; @@ -754,7 +756,7 @@ static void avoid_fixed_resources(const struct device *dev) } } -device_t vga_pri = 0; +struct device *vga_pri = NULL; static void set_vga_bridge_bits(void) { /* |