r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
bcm963xx_map.phys = r->start;
- bcm963xx_map.size = (r->end - r->start);
+ bcm963xx_map.size = (r->end - r->start) + 1;
bcm963xx_map.virt = ioremap(r->start, r->end - r->start + 1);
if (!bcm963xx_map.virt) {