Indentation fix, cleanup.
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / commands / arc / lsdev.c
blob27ed0a2483f1508b0d7d309ec915ba7467a2b2b4
1 /*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 2011 Free Software Foundation, Inc.
5 * GRUB is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * GRUB is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
19 #include <grub/dl.h>
20 #include <grub/misc.h>
21 #include <grub/command.h>
22 #include <grub/i18n.h>
23 #include <grub/arc/arc.h>
25 GRUB_MOD_LICENSE ("GPLv3+");
27 /* Helper for grub_cmd_lsdev. */
28 static int
29 grub_cmd_lsdev_iter (const char *name,
30 const struct grub_arc_component *comp __attribute__ ((unused)),
31 void *data __attribute__ ((unused)))
33 grub_printf ("%s\n", name);
34 return 0;
37 static grub_err_t
38 grub_cmd_lsdev (grub_command_t cmd __attribute__ ((unused)),
39 int argc __attribute__ ((unused)),
40 char **args __attribute__ ((unused)))
42 grub_arc_iterate_devs (grub_cmd_lsdev_iter, 0, 0);
43 return 0;
46 static grub_command_t cmd;
48 GRUB_MOD_INIT(lsdev)
50 cmd = grub_register_command ("lsdev", grub_cmd_lsdev, "",
51 N_("List devices."));
54 GRUB_MOD_FINI(lsdev)
56 grub_unregister_command (cmd);