Messages in this thread Patch in this message |  | | Date | Sun, 11 May 2003 14:29:35 +0200 | From | Adrian Bunk <> | Subject | [patch] 2.5.69-dj1: agp_init shouldn't be static |
| |
-dj makes agp_init static resulting in the following error at the final linking:
<-- snip -->
... 386/oprofile/built-in.o net/built-in.o --end-group -o .tmp_vmlinux1 drivers/built-in.o(.init.text+0x6b584): In function `i810fb_init': : undefined reference to `agp_init' make: *** [.tmp_vmlinux1] Error 1
<-- snip -->
The following patch fixes it:
--- linux-2.5.69-dj1/drivers/char/agp/backend.c.old 2003-05-11 14:12:29.000000000 +0200 +++ linux-2.5.69-dj1/drivers/char/agp/backend.c 2003-05-11 14:13:30.000000000 +0200 @@ -307,7 +307,7 @@ EXPORT_SYMBOL_GPL(agp_remove_bridge); -static int __init agp_init(void) +int __init agp_init(void) { printk(KERN_INFO "Linux agpgart interface v%d.%d (c) Dave Jones\n", AGPGART_VERSION_MAJOR, AGPGART_VERSION_MINOR);
cu Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed
- 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/
|  |