Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 253554 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-6 / +5 lines)
Line  Link Here
0
-- 915resolution/915resolution.c
0
++ 915resolution/915resolution.c
Lines 885-900 Link Here
885
885
886
886
887
887
888
888
static grub_command_t cmd;
889
889
890
GRUB_MOD_INIT(915resolution)
890
GRUB_MOD_INIT(915resolution)
891
{
891
{
892
  (void)mod;			/* To stop warning. */
892
  cmd = grub_register_command ("915resolution", grub_cmd_915resolution,
893
  grub_register_command ("915resolution", grub_cmd_915resolution, GRUB_COMMAND_FLAG_BOTH,
893
			 0, "Intel VBE editor");
894
			 "915resolution", "Intel VBE editor", 0);
895
}
894
}
896
895
897
GRUB_MOD_FINI(915resolution)
896
GRUB_MOD_FINI(915resolution)
898
{
897
{
899
  grub_unregister_command ("915resolution");
898
  grub_unregister_command (cmd);
900
}
899
}

Return to bug 253554