Clarify comment a bit
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Acked-by: Patrick Georgi <patrick@georgi-clan.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5707 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
a6f000cbb8
commit
0e480ca677
|
@ -583,7 +583,9 @@ static void constrain_resources(struct device *dev, struct constraints* limits)
|
||||||
else
|
else
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Is it already outside the limits? */
|
/* Is it a fixed resource outside the current known region?
|
||||||
|
If so, we don't have to consider it - it will be handled
|
||||||
|
correctly and doesn't affect current region's limits */
|
||||||
if (((res->base + res->size -1) < lim->base) || (res->base > lim->limit))
|
if (((res->base + res->size -1) < lim->base) || (res->base > lim->limit))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue