You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
993 B
34 lines
993 B
2 years ago
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
||
|
Date: Tue, 6 Feb 2018 11:02:09 +0100
|
||
|
Subject: [PATCH] Remove duplicated grub_exit() definition for grub-emu
|
||
|
platform
|
||
|
|
||
|
The grub_exit() function signature was changed on all platforms to take a
|
||
|
return code, but latter on a following commit the grub_exit() for the emu
|
||
|
platform was duplicated. It causes a build error so remove the duplicated
|
||
|
function definition.
|
||
|
|
||
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
||
|
---
|
||
|
grub-core/kern/emu/main.c | 6 ------
|
||
|
1 file changed, 6 deletions(-)
|
||
|
|
||
|
diff --git a/grub-core/kern/emu/main.c b/grub-core/kern/emu/main.c
|
||
|
index 7e47ec812..55ea5a11c 100644
|
||
|
--- a/grub-core/kern/emu/main.c
|
||
|
+++ b/grub-core/kern/emu/main.c
|
||
|
@@ -72,12 +72,6 @@ grub_exit (int retval __attribute__((unused)))
|
||
|
grub_reboot ();
|
||
|
}
|
||
|
|
||
|
-void
|
||
|
-grub_exit (int retval __attribute__((unused)))
|
||
|
-{
|
||
|
- grub_reboot ();
|
||
|
-}
|
||
|
-
|
||
|
void
|
||
|
grub_machine_init (void)
|
||
|
{
|