sprint_symbol() cleanup

Remove pointless `else'.

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Andrew Morton 2007-07-15 23:41:24 -07:00 committed by Linus Torvalds
parent d45bce8faf
commit 19769b7626
1 changed files with 5 additions and 6 deletions

View File

@ -317,13 +317,12 @@ int sprint_symbol(char *buffer, unsigned long address)
name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
if (!name)
return sprintf(buffer, "0x%lx", address);
else {
if (modname)
return sprintf(buffer, "%s+%#lx/%#lx [%s]", name, offset,
if (modname)
return sprintf(buffer, "%s+%#lx/%#lx [%s]", name, offset,
size, modname);
else
return sprintf(buffer, "%s+%#lx/%#lx", name, offset, size);
}
else
return sprintf(buffer, "%s+%#lx/%#lx", name, offset, size);
}
/* Look up a kernel symbol and print it to the kernel messages. */