wok-stable annotate linux/stuff/linux-ioremap-2.6.25.5.u @ rev 5068
move static binaries in /usr/share/boot to avoid tazwok strip
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 12 17:24:19 2010 +0100 (2010-03-12) |
parents | |
children |
rev | line source |
---|---|
pascal@2777 | 1 Fix 'BUG: Int 14: CR2 ffd41000' on ASUS P5QL |
pascal@2777 | 2 http://lkml.org/lkml/2008/10/9/267 |
pascal@2777 | 3 --- linux-2.6.25.5/arch/x86/mm/ioremap.c |
pascal@2777 | 4 +++ linux-2.6.25.5/arch/x86/mm/ioremap.c |
pascal@2777 | 5 @@ -437,7 +437,7 @@ |
pascal@2777 | 6 */ |
pascal@2777 | 7 offset = phys_addr & ~PAGE_MASK; |
pascal@2777 | 8 phys_addr &= PAGE_MASK; |
pascal@2777 | 9 - size = PAGE_ALIGN(last_addr) - phys_addr; |
pascal@2777 | 10 + size = PAGE_ALIGN(last_addr + 1) - phys_addr; |
pascal@2777 | 11 |
pascal@2777 | 12 /* |
pascal@2777 | 13 * Mappings have to fit in the FIX_BTMAP area. |