Fix a lack of parenthesis in macro usage that showed up with INVARIANTS

turned on, i.e. in a kernel build.
This commit is contained in:
Eric Anholt 2005-08-26 19:07:03 +00:00
parent 55bea952b3
commit 5105f9ea59

View file

@ -65,7 +65,7 @@ int drm_ati_pcigart_init(drm_device_t *dev, unsigned long *addr,
bzero(pci_gart, ATI_PCIGART_TABLE_SIZE);
KASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE, "page size too small");
KASSERT(PAGE_SIZE >= ATI_PCIGART_PAGE_SIZE, ("page size too small"));
for ( i = 0 ; i < pages ; i++ ) {
page_base = (u32) dev->sg->busaddr[i];