]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-11-28 Vladimir Serbinenko <phcoder@gmail.com>
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 28 Nov 2009 19:40:44 +0000 (20:40 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 28 Nov 2009 19:40:44 +0000 (20:40 +0100)
Correct module naming.

* video/efi_uga.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
(GRUB_MOD_INIT(efi_uga)): ... to this
(GRUB_MOD_FINI(efi_fb)): Renamed from this ...
(GRUB_MOD_FINI(efi_uga)): ... to this
* video/efi_gop.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
(GRUB_MOD_INIT(efi_gop)): ... to this
(GRUB_MOD_FINI(efi_fb)): Renamed from this ...
(GRUB_MOD_FINI(efi_gop)): ... to this

ChangeLog
video/efi_gop.c
video/efi_uga.c

index 525ee56d347df06961f728367893dde589340943..a363e60ee60b75ca4e569ca791d4247ef5b920c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2009-11-28  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       Correct module naming.
+
+       * video/efi_uga.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
+       (GRUB_MOD_INIT(efi_uga)): ... to this
+       (GRUB_MOD_FINI(efi_fb)): Renamed from this ...
+       (GRUB_MOD_FINI(efi_uga)): ... to this
+       * video/efi_gop.c (GRUB_MOD_INIT(efi_fb)): Renamed from this ...
+       (GRUB_MOD_INIT(efi_gop)): ... to this
+       (GRUB_MOD_FINI(efi_fb)): Renamed from this ...
+       (GRUB_MOD_FINI(efi_gop)): ... to this
+
 2009-11-28  Robert Millan  <rmh.grub@aybabtu.com>
 
        * util/mkisofs/mkisofs.c (ld_options): Mark all `arg' strings as
index 4cbcaba8de2e0f6d82c6f08823efa871259e081d..e2eb2f7aeba4b7fb2efaf08865fa8d7cd77d3830 100644 (file)
@@ -380,13 +380,13 @@ static struct grub_video_adapter grub_video_gop_adapter =
     .next = 0
   };
 
-GRUB_MOD_INIT(efi_fb)
+GRUB_MOD_INIT(efi_gop)
 {
   if (check_protocol ())
     grub_video_register (&grub_video_gop_adapter);
 }
 
-GRUB_MOD_FINI(efi_fb)
+GRUB_MOD_FINI(efi_gop)
 {
   if (restore_needed)
     {
index b5f3e62f264e49babec1215965d301bde8a7d3ca..31062c5f5ae7fe676913b4eeeda7b7d9aecf3b0a 100644 (file)
@@ -324,13 +324,13 @@ static struct grub_video_adapter grub_video_uga_adapter =
     .get_active_render_target = grub_video_fb_get_active_render_target,
   };
 
-GRUB_MOD_INIT(efi_fb)
+GRUB_MOD_INIT(efi_uga)
 {
   if (check_protocol ())
     grub_video_register (&grub_video_uga_adapter);
 }
 
-GRUB_MOD_FINI(efi_fb)
+GRUB_MOD_FINI(efi_uga)
 {
   if (uga)
     grub_video_unregister (&grub_video_uga_adapter);