arm,kgdb: fix GDB_MAX_REGS no longer used
authorEric Miao <eric.y.miao@gmail.com>
Mon, 16 Aug 2010 20:58:30 +0000 (15:58 -0500)
committerJason Wessel <jason.wessel@windriver.com>
Mon, 16 Aug 2010 20:58:30 +0000 (15:58 -0500)
According to commit 22eeef4bb2a7fd225089c0044060ed1fbf091958

    kgdb,arm: Individual register get/set for arm

It's now replaced by DBG_MAX_REG_NUM.

Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
arch/arm/kernel/kgdb.c

index 778c2f7..d6e8b4d 100644 (file)
@@ -79,7 +79,7 @@ sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *task)
                return;
 
        /* Initialize to zero */
-       for (regno = 0; regno < GDB_MAX_REGS; regno++)
+       for (regno = 0; regno < DBG_MAX_REG_NUM; regno++)
                gdb_regs[regno] = 0;
 
        /* Otherwise, we have only some registers from switch_to() */