Merge master.kernel.org:/home/rmk/linux-2.6-arm

* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 4569/1: ep93xx_gpio_irq_type(): fix spurious enumeration offset for FGPIO handling
[ARM] 4568/1: fix l2x0 cache invalidate handling of unaligned addresses

+12 -2
+1 -1
arch/arm/mach-ep93xx/core.c
··· 336 if (line >= 0 && line < 16) { 337 gpio_line_config(line, GPIO_IN); 338 } else { 339 - gpio_line_config(EP93XX_GPIO_LINE_F(line), GPIO_IN); 340 } 341 342 port = line >> 3;
··· 336 if (line >= 0 && line < 16) { 337 gpio_line_config(line, GPIO_IN); 338 } else { 339 + gpio_line_config(EP93XX_GPIO_LINE_F(line-16), GPIO_IN); 340 } 341 342 port = line >> 3;
+11 -1
arch/arm/mm/cache-l2x0.c
··· 57 { 58 unsigned long addr; 59 60 - start &= ~(CACHE_LINE_SIZE - 1); 61 for (addr = start; addr < end; addr += CACHE_LINE_SIZE) 62 sync_writel(addr, L2X0_INV_LINE_PA, 1); 63 cache_sync();
··· 57 { 58 unsigned long addr; 59 60 + if (start & (CACHE_LINE_SIZE - 1)) { 61 + start &= ~(CACHE_LINE_SIZE - 1); 62 + sync_writel(start, L2X0_CLEAN_INV_LINE_PA, 1); 63 + start += CACHE_LINE_SIZE; 64 + } 65 + 66 + if (end & (CACHE_LINE_SIZE - 1)) { 67 + end &= ~(CACHE_LINE_SIZE - 1); 68 + sync_writel(end, L2X0_CLEAN_INV_LINE_PA, 1); 69 + } 70 + 71 for (addr = start; addr < end; addr += CACHE_LINE_SIZE) 72 sync_writel(addr, L2X0_INV_LINE_PA, 1); 73 cache_sync();