Finally fix the pesky x86-2.6 block2mtd related crash (#1058)
[openwrt-10.03/.git] / target / linux / generic-2.6 / patches / 212-block2mtd_erase_scan.patch
1 --- linux.dev/drivers/mtd/devices/block2mtd.c.old       2007-02-18 14:08:59.519952312 +0100
2 +++ linux.dev/drivers/mtd/devices/block2mtd.c   2007-02-18 14:09:04.219237912 +0100
3 @@ -111,7 +111,7 @@
4                 if (IS_ERR(page))
5                         return PTR_ERR(page);
6  
7 -               max = (u_long*)page_address(page) + PAGE_SIZE;
8 +               max = (u_long*) ((u8 *) page_address(page) + PAGE_SIZE);
9                 for (p=(u_long*)page_address(page); p<max; p++)
10                         if (*p != -1UL) {
11                                 lock_page(page);