![]() | ||||||||||
Messages in this thread Patch in this message |
In 2.5.51, I get: drivers/char/agp/generic.c: In function `agp_generic_create_gatt_table': drivers/char/agp/generic.c:472: warning: assignment from incompatible pointer type gatt_table_real used to be 'u32' but now it is 'unsigned long'... and a typecast was not updated. Trivial patch applied, against 2.5.51. Robert Love drivers/char/agp/generic.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -urN linux-2.5.51/drivers/char/agp/generic.c linux/drivers/char/agp/generic.c --- linux-2.5.51/drivers/char/agp/generic.c 2002-12-10 17:45:01.000000000 -0500 +++ linux/drivers/char/agp/generic.c 2002-12-11 01:00:28.000000000 -0500 @@ -469,8 +469,8 @@ for (page = virt_to_page(table); page <= virt_to_page(table_end); page++) SetPageReserved(page); - agp_bridge.gatt_table_real = (u32 *) table; - agp_gatt_table = (void *)table; + agp_bridge.gatt_table_real = (unsigned long *) table; + agp_gatt_table = (void *)table; CACHE_FLUSH(); agp_bridge.gatt_table = ioremap_nocache(virt_to_phys(table), (PAGE_SIZE * (1 << page_order))); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ | |||||||||
| Last update: 2005-03-22 11:31 [W:0.156 / U:1.410 seconds] ©2003-2008 Jasper Spaans | ||||||||||