* grub-core/disk/diskfilter.c (grub_diskfilter_open): Remove useless

grub_dprintf.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-26 23:39:21 +01:00
parent b2582b84f2
commit 50159add1e
2 changed files with 5 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/disk/diskfilter.c (grub_diskfilter_open): Remove useless
grub_dprintf.
2012-02-26 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/disk/dmraid_nvidia.c (grub_dmraid_nv_detect): Remove useless

View file

@ -365,14 +365,7 @@ grub_diskfilter_open (const char *name, grub_disk_t disk)
disk->id = lv->number;
disk->data = lv;
grub_dprintf ("diskfilter", "%s: total_devs=%d, total_size=%lld\n", name,
lv->segments ? lv->segments->node_count : 0,
(unsigned long long) lv->size);
disk->total_sectors = lv->size;
grub_dprintf ("diskfilter", "%s: level=%d, total_sectors=%lld\n", name,
lv->segments ? lv->segments->type : 0,
(unsigned long long) disk->total_sectors);
return 0;
}