init-exit-cleanups.patch in 2.6.0-test4-mm6 made ide_probe_for_pdc4030
in drivers/ide/legacy/pdc4030.c static although it's referenced from
drivers/ide/ide.c resulting in a link error.
The following patch fixes it:
--- linux-2.6.0-test4-mm6/drivers/ide/legacy/pdc4030.c.old 2003-09-06 21:28:20.000000000 +0200
+++ linux-2.6.0-test4-mm6/drivers/ide/legacy/pdc4030.c 2003-09-06 21:28:40.000000000 +0200
@@ -297,7 +297,7 @@
}
-static int __init ide_probe_for_pdc4030(void)
+int __init ide_probe_for_pdc4030(void)
{
unsigned int index;
ide_hwif_t *hwif;
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
> init-exit-cleanups.patch in 2.6.0-test4-mm6 made ide_probe_for_pdc4030 in
> drivers/ide/legacy/pdc4030.c static although it's referenced from
> drivers/ide/ide.c resulting in a link error.
>
> The following patch fixes it:
Thanks, I'll test better in the future, and expect submitters
to do so also.
~Randy