Author: oxygene Date: Tue Aug 17 09:46:50 2010 New Revision: 5707 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5707
Log: Clarify comment a bit Signed-off-by: Patrick Georgi <[email protected]> Acked-by: Patrick Georgi <[email protected]> Modified: trunk/src/devices/device.c Modified: trunk/src/devices/device.c ============================================================================== --- trunk/src/devices/device.c Tue Aug 17 09:14:44 2010 (r5706) +++ trunk/src/devices/device.c Tue Aug 17 09:46:50 2010 (r5707) @@ -583,7 +583,9 @@ else 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)) continue; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

