~jonathank89/burg/burg-percise

« back to all changes in this revision

Viewing changes to commands/efi/fixvideo.c

merge mainline into mips

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <grub/file.h>
23
23
#include <grub/pci.h>
24
24
#include <grub/command.h>
 
25
#include <grub/i18n.h>
25
26
 
26
27
static struct grub_video_patch
27
28
{
99
100
GRUB_MOD_INIT(fixvideo)
100
101
{
101
102
  cmd_fixvideo = grub_register_command ("fix_video", grub_cmd_fixvideo,
102
 
                                        0, "Fix video problem.");
 
103
                                        0, N_("Fix video problem."));
103
104
 
104
105
}
105
106