diff options
-rw-r--r-- | src/device/device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/device/device.c b/src/device/device.c index b3b8d241a7..117bd1802b 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -525,6 +525,7 @@ static void allocate_resources(struct bus *bus, struct resource *bridge, /* Base must be aligned. */ base = round(base, resource->align); resource->base = base; + resource->limit = resource->base + resource->size - 1; resource->flags |= IORESOURCE_ASSIGNED; resource->flags &= ~IORESOURCE_STORED; base += resource->size; |