~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/mn10300/kernel/process.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
 
136
136
void machine_restart(char *cmd)
137
137
{
138
 
#ifdef CONFIG_GDBSTUB
 
138
#ifdef CONFIG_KERNEL_DEBUGGER
139
139
        gdbstub_exit(0);
140
140
#endif
141
141
 
148
148
 
149
149
void machine_halt(void)
150
150
{
151
 
#ifdef CONFIG_GDBSTUB
 
151
#ifdef CONFIG_KERNEL_DEBUGGER
152
152
        gdbstub_exit(0);
153
153
#endif
154
154
}
155
155
 
156
156
void machine_power_off(void)
157
157
{
158
 
#ifdef CONFIG_GDBSTUB
 
158
#ifdef CONFIG_KERNEL_DEBUGGER
159
159
        gdbstub_exit(0);
160
160
#endif
161
161
}