Skip to content

Commit

Permalink
MIPS: Markeins: Remove runtime debug prints
Browse files Browse the repository at this point in the history
Remove runtime db_* macros as we don't need them any more.  In general,
such helpers are useful for initial porting, but once approved, they are
not indispensable.

Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Shinya Kuribayashi authored and Ralf Baechle committed Oct 27, 2008
1 parent 9ae9fd7 commit a9c2aa1
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions arch/mips/emma/markeins/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
#include <asm/irq_cpu.h>
#include <asm/system.h>
#include <asm/mipsregs.h>
#include <asm/debug.h>
#include <asm/addrspace.h>
#include <asm/bootinfo.h>

Expand Down Expand Up @@ -67,7 +66,6 @@ void ll_emma2rh_irq_enable(int emma2rh_irq)
(emma2rh_irq / 32);
reg_value = emma2rh_in32(reg_index);
reg_bitmask = 0x1 << (emma2rh_irq % 32);
db_assert((reg_value & reg_bitmask) == 0);
emma2rh_out32(reg_index, reg_value | reg_bitmask);
}

Expand All @@ -82,7 +80,6 @@ void ll_emma2rh_irq_disable(int emma2rh_irq)
(emma2rh_irq / 32);
reg_value = emma2rh_in32(reg_index);
reg_bitmask = 0x1 << (emma2rh_irq % 32);
db_assert((reg_value & reg_bitmask) != 0);
emma2rh_out32(reg_index, reg_value & ~reg_bitmask);
}

Expand Down Expand Up @@ -118,9 +115,6 @@ void ll_emma2rh_sw_irq_enable(int irq)
{
u32 reg;

db_assert(irq >= 0);
db_assert(irq < NUM_EMMA2RH_IRQ_SW);

reg = emma2rh_in32(EMMA2RH_BHIF_SW_INT_EN);
reg |= 1 << irq;
emma2rh_out32(EMMA2RH_BHIF_SW_INT_EN, reg);
Expand All @@ -130,9 +124,6 @@ void ll_emma2rh_sw_irq_disable(int irq)
{
u32 reg;

db_assert(irq >= 0);
db_assert(irq < 32);

reg = emma2rh_in32(EMMA2RH_BHIF_SW_INT_EN);
reg &= ~(1 << irq);
emma2rh_out32(EMMA2RH_BHIF_SW_INT_EN, reg);
Expand Down Expand Up @@ -170,9 +161,6 @@ void ll_emma2rh_gpio_irq_enable(int irq)
{
u32 reg;

db_assert(irq >= 0);
db_assert(irq < NUM_EMMA2RH_IRQ_GPIO);

reg = emma2rh_in32(EMMA2RH_GPIO_INT_MASK);
reg |= 1 << irq;
emma2rh_out32(EMMA2RH_GPIO_INT_MASK, reg);
Expand All @@ -182,9 +170,6 @@ void ll_emma2rh_gpio_irq_disable(int irq)
{
u32 reg;

db_assert(irq >= 0);
db_assert(irq < NUM_EMMA2RH_IRQ_GPIO);

reg = emma2rh_in32(EMMA2RH_GPIO_INT_MASK);
reg &= ~(1 << irq);
emma2rh_out32(EMMA2RH_GPIO_INT_MASK, reg);
Expand Down Expand Up @@ -314,8 +299,6 @@ void __init arch_init_irq(void)
{
u32 reg;

db_run(printk("markeins_irq_setup invoked.\n"));

/* by default, interrupts are disabled. */
emma2rh_out32(EMMA2RH_BHIF_INT_EN_0, 0);
emma2rh_out32(EMMA2RH_BHIF_INT_EN_1, 0);
Expand Down

0 comments on commit a9c2aa1

Please sign in to comment.