* grub-core/disk/ata.c (grub_ata_real_open): Use grub_error properly.
This commit is contained in:
parent
45fbd9a23f
commit
e343549ca9
2 changed files with 6 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue