kgdb.c (d09e356ad06a8b6f5cceabf7c6cf05fdb62b46e5) kgdb.c (00f526850151e91fdad0896a1436341687ad2582)
1/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2, or (at your option) any
5 * later version.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of

--- 595 unchanged lines hidden (view full) ---

604 return ret;
605}
606
607static struct notifier_block kgdb_notifier = {
608 .notifier_call = kgdb_notify,
609};
610
611/**
1/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2, or (at your option) any
5 * later version.
6 *
7 * This program is distributed in the hope that it will be useful, but
8 * WITHOUT ANY WARRANTY; without even the implied warranty of

--- 595 unchanged lines hidden (view full) ---

604 return ret;
605}
606
607static struct notifier_block kgdb_notifier = {
608 .notifier_call = kgdb_notify,
609};
610
611/**
612 * kgdb_arch_init - Perform any architecture specific initalization.
612 * kgdb_arch_init - Perform any architecture specific initialization.
613 *
613 *
614 * This function will handle the initalization of any architecture
614 * This function will handle the initialization of any architecture
615 * specific callbacks.
616 */
617int kgdb_arch_init(void)
618{
619 int retval;
620
621 retval = register_die_notifier(&kgdb_notifier);
622 if (retval)

--- 193 unchanged lines hidden ---
615 * specific callbacks.
616 */
617int kgdb_arch_init(void)
618{
619 int retval;
620
621 retval = register_die_notifier(&kgdb_notifier);
622 if (retval)

--- 193 unchanged lines hidden ---