Commit f5d27787 authored by David Mosberger's avatar David Mosberger

[PATCH] module symbol fix

Fix for trivial typo.  Without it, you can't insert anything on top of
agpgart.ko because the agp_register_driver() will erroneously pick up
the symbol version from agp_backend_acquire().
parent 18550640
...@@ -165,7 +165,7 @@ static unsigned long __find_symbol(const char *name, ...@@ -165,7 +165,7 @@ static unsigned long __find_symbol(const char *name,
if (gplok) { if (gplok) {
for (i = 0; i < mod->num_gpl_syms; i++) { for (i = 0; i < mod->num_gpl_syms; i++) {
if (strcmp(mod->gpl_syms[i].name, name) == 0) { if (strcmp(mod->gpl_syms[i].name, name) == 0) {
*crc = symversion(mod->crcs, i); *crc = symversion(mod->gpl_crcs, i);
return mod->gpl_syms[i].value; return mod->gpl_syms[i].value;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment