* grub-core/net/net.c (grub_net_route_unregister): Remove unused

function.
	* grub-core/loader/i386/xnu.c (hextoval): Likewise.
	* grub-core/disk/geli.c (ascii2hex): Likewise.
This commit is contained in:
Vladimir Serbinenko 2013-11-07 19:31:22 +01:00
parent d5524ca87b
commit 7f084087b2
4 changed files with 7 additions and 30 deletions

View file

@ -354,18 +354,6 @@ grub_xnu_devprop_add_property_utf16 (struct grub_xnu_devprop_device_descriptor *
return GRUB_ERR_NONE;
}
static inline int
hextoval (char c)
{
if (c >= '0' && c <= '9')
return c - '0';
if (c >= 'a' && c <= 'z')
return c - 'a' + 10;
if (c >= 'A' && c <= 'Z')
return c - 'A' + 10;
return 0;
}
void
grub_cpu_xnu_unload (void)
{