diff options
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/setup.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/m68k/kernel/setup.c b/arch/m68k/kernel/setup.c index 9b307a5f4f22..610319356691 100644 --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c | |||
@@ -513,3 +513,13 @@ void check_bugs(void) | |||
513 | } | 513 | } |
514 | #endif /* !CONFIG_M68KFPU_EMU */ | 514 | #endif /* !CONFIG_M68KFPU_EMU */ |
515 | } | 515 | } |
516 | |||
517 | #ifdef CONFIG_ADB | ||
518 | static int __init adb_probe_sync_enable (char *str) { | ||
519 | extern int __adb_probe_sync; | ||
520 | __adb_probe_sync = 1; | ||
521 | return 1; | ||
522 | } | ||
523 | |||
524 | __setup("adb_sync", adb_probe_sync_enable); | ||
525 | #endif /* CONFIG_ADB */ | ||