diff options
Diffstat (limited to 'drivers/video/fbmem.c')
-rw-r--r-- | drivers/video/fbmem.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index e08b7b5cb326..731fce64df9d 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c | |||
@@ -1491,7 +1491,10 @@ static bool fb_do_apertures_overlap(struct apertures_struct *gena, | |||
1491 | for (j = 0; j < gena->count; ++j) { | 1491 | for (j = 0; j < gena->count; ++j) { |
1492 | struct aperture *g = &gena->ranges[j]; | 1492 | struct aperture *g = &gena->ranges[j]; |
1493 | printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n", | 1493 | printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n", |
1494 | g->base, g->size, h->base, h->size); | 1494 | (unsigned long long)g->base, |
1495 | (unsigned long long)g->size, | ||
1496 | (unsigned long long)h->base, | ||
1497 | (unsigned long long)h->size); | ||
1495 | if (apertures_overlap(g, h)) | 1498 | if (apertures_overlap(g, h)) |
1496 | return true; | 1499 | return true; |
1497 | } | 1500 | } |