powerpc/pseries: Use pr_devel() in xics.c
pr_debug() can now result in code being generated even when DEBUG is not defined. That's not really desirable in some places. With CONFIG_DYNAMIC_DEBUG=y: size before: text data bss dec hex filename 7720 5488 296 13504 34c0 platforms/pseries/xics.o size after: text data bss dec hex filename 7535 5456 296 13287 33e7 platforms/pseries/xics.o Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
d258e64ef5
commit
b69e9e931d
1 changed files with 4 additions and 4 deletions
|
@ -190,10 +190,10 @@ static void xics_unmask_irq(unsigned int virq)
|
|||
int call_status;
|
||||
int server;
|
||||
|
||||
pr_debug("xics: unmask virq %d\n", virq);
|
||||
pr_devel("xics: unmask virq %d\n", virq);
|
||||
|
||||
irq = (unsigned int)irq_map[virq].hwirq;
|
||||
pr_debug(" -> map to hwirq 0x%x\n", irq);
|
||||
pr_devel(" -> map to hwirq 0x%x\n", irq);
|
||||
if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
|
||||
return;
|
||||
|
||||
|
@ -252,7 +252,7 @@ static void xics_mask_irq(unsigned int virq)
|
|||
{
|
||||
unsigned int irq;
|
||||
|
||||
pr_debug("xics: mask virq %d\n", virq);
|
||||
pr_devel("xics: mask virq %d\n", virq);
|
||||
|
||||
irq = (unsigned int)irq_map[virq].hwirq;
|
||||
if (irq == XICS_IPI || irq == XICS_IRQ_SPURIOUS)
|
||||
|
@ -414,7 +414,7 @@ static int xics_host_match(struct irq_host *h, struct device_node *node)
|
|||
static int xics_host_map(struct irq_host *h, unsigned int virq,
|
||||
irq_hw_number_t hw)
|
||||
{
|
||||
pr_debug("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
|
||||
pr_devel("xics: map virq %d, hwirq 0x%lx\n", virq, hw);
|
||||
|
||||
/* Insert the interrupt mapping into the radix tree for fast lookup */
|
||||
irq_radix_revmap_insert(xics_host, virq, hw);
|
||||
|
|
Loading…
Reference in a new issue