As Myles suggested a while back: Switch long time #warnings to be comments
[coreboot.git] / src / northbridge / amd / amdfam10 / northbridge.c
index 76d85f6c3ce145738118a2f25437073ef2f5c28f..3d968a9dedbfbfa249abbe994e7315bd0809909a 100644 (file)
@@ -960,12 +960,14 @@ static void pci_domain_set_resources(device_t dev)
                pci_tolm = find_pci_tolm(&dev->link[link], pci_tolm);
        }
 
-#warning "FIXME handle interleaved nodes"
+       // FIXME handle interleaved nodes. If you fix this here, please fix
+       // amdk8, too.
        mmio_basek = pci_tolm >> 10;
        /* Round mmio_basek to something the processor can support */
        mmio_basek &= ~((1 << 6) -1);
 
-#warning "FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M MMIO hole"
+       // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
+       // MMIO hole. If you fix this here, please fix amdk8, too.
        /* Round the mmio hold to 64M */
        mmio_basek &= ~((64*1024) - 1);