summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/probe-modules.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/probe-modules.c')
-rw-r--r--mdk-stage1/probe-modules.c60
1 files changed, 30 insertions, 30 deletions
diff --git a/mdk-stage1/probe-modules.c b/mdk-stage1/probe-modules.c
index ad4f9e4cd..c282a8d1c 100644
--- a/mdk-stage1/probe-modules.c
+++ b/mdk-stage1/probe-modules.c
@@ -25,46 +25,46 @@
void exit_bootsplash(void) {}
void stg1_error_message(char *msg, ...)
{
- va_list args;
- va_start(args, msg);
- verror_message(msg, args);
- va_end(args);
+ va_list args;
+ va_start(args, msg);
+ verror_message(msg, args);
+ va_end(args);
}
void fatal_error(char *msg)
{
- log_message("FATAL ERROR IN MODULES LOADER: %s\n\nI can't recover from this.\nYou may reboot your system.\n", msg);
- exit(EXIT_FAILURE);
+ log_message("FATAL ERROR IN MODULES LOADER: %s\n\nI can't recover from this.\nYou may reboot your system.\n", msg);
+ exit(EXIT_FAILURE);
}
int main(int argc, char **argv, char **env)
{
- enum media_bus bus = BUS_ANY;
- char *module = NULL;
- char options[500] = "";
+ enum media_bus bus = BUS_ANY;
+ char *module = NULL;
+ char options[500] = "";
- if (argc > 1) {
- if (streq(argv[1], "--usb")) {
- bus = BUS_USB;
- } else if (!ptr_begins_static_str(argv[1], "--")) {
- int i;
- module = argv[1];
- for (i = 2; i < argc; i++) {
- strcat(options, argv[i]);
- strcat(options, " ");
- }
- }
- }
+ if (argc > 1) {
+ if (streq(argv[1], "--usb")) {
+ bus = BUS_USB;
+ } else if (!ptr_begins_static_str(argv[1], "--")) {
+ int i;
+ module = argv[1];
+ for (i = 2; i < argc; i++) {
+ strcat(options, argv[i]);
+ strcat(options, " ");
+ }
+ }
+ }
- open_log();
- init_modules_insmoding();
+ open_log();
+ init_modules_insmoding();
- if (module) {
- my_insmod(module, ANY_DRIVER_TYPE, options, 0);
- } else {
- find_media(bus);
- }
+ if (module) {
+ my_insmod(module, ANY_DRIVER_TYPE, options, 0);
+ } else {
+ find_media(bus);
+ }
- close_log();
+ close_log();
- return 0;
+ return 0;
}