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 patrick@georgi-clan.de Acked-by: Patrick Georgi patrick@georgi-clan.de
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;