* grub-core/disk/ata.c (grub_ata_real_open): Use grub_error properly.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-24 14:47:14 +02:00
parent 45fbd9a23f
commit e343549ca9
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/disk/ata.c (grub_ata_real_open): Use grub_error properly.
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
Add missing video ids to coreboot and ieee1275 video.

View file

@ -382,6 +382,8 @@ grub_ata_real_open (int id, int bus)
err = grub_ata_identify (ata);
if (err)
{
if (!grub_errno)
grub_error (GRUB_ERR_UNKNOWN_DEVICE, "no such ATA device");
grub_free (ata);
return NULL;
}