From 3a2471330e59362d672d6af71df001219fbf77b8 Mon Sep 17 00:00:00 2001 From: Runmin Wang Date: Mon, 1 Aug 2016 16:40:53 -0700 Subject: [PATCH] irq-chip: gic-v3: remove print message in irq driver Remove dmesg about irq redistributor since it fills up the console with every hotplug of the cpus. The information about redistributor is already disclosed in the dmesg during bootup. CRs-Fixed: 1048941 Change-Id: I5ddb2036ab3df4715382368c144365d578ce4bb8 Signed-off-by: Runmin Wang --- drivers/irqchip/irq-gic-v3.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 022473473971..190d294197a7 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -588,9 +588,6 @@ static int gic_populate_rdist(void) u64 offset = ptr - gic_data.redist_regions[i].redist_base; gic_data_rdist_rd_base() = ptr; gic_data_rdist()->phys_base = gic_data.redist_regions[i].phys_base + offset; - pr_info("CPU%d: found redistributor %lx region %d:%pa\n", - smp_processor_id(), mpidr, i, - &gic_data_rdist()->phys_base); return 0; }