* grub-core/lib/efi/relocator.c (grub_relocator_firmware_alloc_region):

Remove dprintf.
	* grub-core/lib/relocator.c (malloc_in_range): Likewise.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-20 13:39:04 +02:00
parent 90ec4b7f6c
commit 872dac835c
3 changed files with 10 additions and 2 deletions

View file

@ -984,9 +984,11 @@ malloc_in_range (struct grub_relocator *rel,
alloc_end = min (events[j].pos, target + size);
if (alloc_end > alloc_start)
{
#ifdef DEBUG_RELOCATOR_NOMEM_DPRINTF
grub_dprintf ("relocator", "subchunk 0x%lx-0x%lx, %d\n",
(unsigned long) alloc_start,
(unsigned long) alloc_end, typepre);
#endif
curschu->type = typepre;
curschu->start = alloc_start;
curschu->size = alloc_end - alloc_start;