amd/amdfam10: eliminate dead code
if (gart) { foo = gart?a:b; } never evaluates to foo=b. Change-Id: Ibc7376687374065585b125a670dea5fe46bda97a Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Found-by: Coverity Scan #1347365 Reviewed-on: https://review.coreboot.org/16008 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
8c8403ff5f
commit
47f7b0e196
|
@ -67,7 +67,7 @@ static void mcf3_read_resources(device_t dev)
|
||||||
if (gart) {
|
if (gart) {
|
||||||
/* Add a Gart apeture resource */
|
/* Add a Gart apeture resource */
|
||||||
resource = new_resource(dev, 0x94);
|
resource = new_resource(dev, 0x94);
|
||||||
resource->size = gart?CONFIG_AGP_APERTURE_SIZE:1;
|
resource->size = CONFIG_AGP_APERTURE_SIZE;
|
||||||
resource->align = log2(resource->size);
|
resource->align = log2(resource->size);
|
||||||
resource->gran = log2(resource->size);
|
resource->gran = log2(resource->size);
|
||||||
resource->limit = 0xffffffff; /* 4G */
|
resource->limit = 0xffffffff; /* 4G */
|
||||||
|
|
Loading…
Reference in New Issue